pub trait Endofunction<X: SetSignature + EqSignature>: Function<X, X> {
// Provided method
fn is_fixed_point(&self, x: X::Set) -> bool { ... }
}Expand description
A function from a set into itself
Provided Methods§
Sourcefn is_fixed_point(&self, x: X::Set) -> bool
fn is_fixed_point(&self, x: X::Set) -> bool
check if an element is fixed
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.