ceylon.language.not.ceylon Maven / Gradle / Ivy
"Returns a function which is the logical negation of the
given predicate function."
tagged("Functions")
shared Boolean not(
"The predicate function to negate"
Boolean(Value) p)(Value val)
=> !p(val);
© 2015 - 2024 Weber Informatics LLC | Privacy Policy