- after
auto after(S system)
Undocumented in source. Be warned that the author may not have intended to support it.
- before
auto before(S system)
Undocumented in source. Be warned that the author may not have intended to support it.
- first
auto first()
Undocumented in source. Be warned that the author may not have intended to support it.
- last
auto last()
Undocumented in source. Be warned that the author may not have intended to support it.
Enum allowing to give special order of a system when registering it to the SystemManager. Order.first places it first in the list. Order.last places it last in the list. $(D Order.before(mySystem) places it before mySystem in the list. $(D Order.after(mySystem) places it after mySystem in the list. For before and after, it assumes mySystem is already registered.