View source
abstract AdjustableContext(ElementTree)
package haxe.coro.context
import haxe.coro.context.Context
Available on all platforms
Similar to Context, but mutable. This type should rarely be used explicitly and
mostly appears as an intermediate type via the Context API.
Static methods
staticinlineadd<T>(this:ElementTree, key:Key<T>, element:T):AdjustableContext
Deprecated: "Use `set` instead"
staticinlineset<T>(this:ElementTree, key:Key<T>, element:T):AdjustableContext
Adds or replaces element associated with key.
staticwith(this:ElementTree, elements:Rest<IElement<Any>>):AdjustableContext
Adds or replaces the elements associations in this context.
staticwithout(this:ElementTree, keys:Rest<Key<Any>>):AdjustableContext
Unsets all keys in this context.