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"

staticinlineget<T>(this:ElementTree, key:Key<T>):Null<T>

See also:

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.