return a reference to the Reactor singleton
In theory, @safe code must not access global variables. Since theReactor is only meant to be used by a single thread, however, this function is @trusted. If it were not, practically no code could be @safe.
See Implementation
return a reference to the Reactor singleton
In theory, @safe code must not access global variables. Since theReactor is only meant to be used by a single thread, however, this function is @trusted. If it were not, practically no code could be @safe.