code/__DEFINES/_helpers.dm
STRINGIFY | Stringifies whatever you put into it. |
---|---|
subtypesof | subtypesof(), typesof() without the parent path |
UNTIL | Until a condition is true, sleep |
SLEEP_NOT_DEL | Sleep if we haven't been deleted Otherwise, return |
text_ref | Takes a datum as input, returns its ref string |
EMPTY_BLOCK_GUARD | A null statement to guard against EmptyBlock lint without necessitating the use of pass() Used to avoid proc-call overhead. But use sparingly. Probably pointless in most places. |
Define Details
EMPTY_BLOCK_GUARD
A null statement to guard against EmptyBlock lint without necessitating the use of pass() Used to avoid proc-call overhead. But use sparingly. Probably pointless in most places.
SLEEP_NOT_DEL
Sleep if we haven't been deleted Otherwise, return
STRINGIFY
Stringifies whatever you put into it.
UNTIL
Until a condition is true, sleep
subtypesof
subtypesof(), typesof() without the parent path
text_ref
Takes a datum as input, returns its ref string