Context.initialized

Whether this Context object has been initialized, i.e. whether it refers to a valid $(ZMQ) context.

struct Context
@safe @property const pure nothrow
bool
initialized
()

Examples

Context ctx;
assert (!ctx.initialized);
ctx = Context();
assert (ctx.initialized);
ctx.detach();
assert (!ctx.initialized);

Meta