"The identity function that always returns its argument."
tagged("Functions")
since("1.1.0")
shared Value identity<Value>(Value argument) => argument;

"A `void` function that does nothing."
tagged("Functions")
since("1.1.0")
shared void noop(Anything* arguments) {}