_std/macros/_metamacros.dm
INCLUDE | Useful for when you need to include in a macro, can't use #include directly due to # being interpreted as stringification |
---|---|
IDENTITY | Given x, evaluates to x. |
NOTHING | Evaluates to nothing. |
DUMMY | No operation dummy thing for atom property purposes, most of the stuff is there to suppress warnings, does nothing |
APPLY_PREFIX | Given a prefix and a list of arguments, adds the prefix to each argument |
Define Details
APPLY_PREFIX
Given a prefix and a list of arguments, adds the prefix to each argument
DUMMY
No operation dummy thing for atom property purposes, most of the stuff is there to suppress warnings, does nothing
IDENTITY
Given x, evaluates to x.
INCLUDE
Useful for when you need to include in a macro, can't use #include directly due to # being interpreted as stringification
NOTHING
Evaluates to nothing.