@select
macro @select(bool $bool, #value_1, #value_2) @builtin @deprecated("Use '$bool ? #value_1 : #value_2' instead.")Select between two values at compile time,the values do not have to be of the same type.
This acts like `$bool ? #value_1 : #value_2` but at compile time.