GraphContext

class GraphContext

In memory store that can be used to store objects in a given HeapGraph instance. This is a simple MutableMap of String to Any, but with unsafe generics access.

Constructors

GraphContext
Link copied to clipboard
fun GraphContext()

Functions

contains
Link copied to clipboard
operator fun contains(key: String): Boolean
get
Link copied to clipboard
operator fun <T> get(key: String): T?
getOrPut
Link copied to clipboard
fun <T> getOrPut(key: String, defaultValue: () -> T): T
minusAssign
Link copied to clipboard
operator fun minusAssign(key: String)
set
Link copied to clipboard
operator fun <T> set(key: String, value: T)