ceylon.language.functions.ceylon Maven / Gradle / Ivy
"The identity function that always returns its argument."
tagged("Functions")
since("1.1.0")
shared Value identity(Value argument) => argument;
"A `void` function that does nothing."
tagged("Functions")
since("1.1.0")
shared void noop(Anything* arguments) {}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy