ImplicitContext.get

Get a context variable. The look-up will chain to above contexts like sort of namespaces or a dynamic cast. Topmost context gets the lookup, like namespaces or prototype chains.

Note: Using the wrong type, or the wrong identifier, is a programming error and will crash. Identifiers mask those of earlier scopes. Lookup MUST succeed else it's a bug.

struct ImplicitContext
nothrow @nogc @safe
T
get
(
T
)
(
const(char)[] name
)

Meta