Endofunction

Trait Endofunction 

Source
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§

Source

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.

Implementors§