Enum fixpoint::Fix [] [src]

pub enum Fix<A> {
    Pro(A),
    Fix(A),
}

Variants

Methods

impl<A> Fix<A>
[src]

Trait Implementations

impl<A: Debug> Debug for Fix<A>
[src]

Formats the value using the given formatter.

impl<A: PartialEq> PartialEq for Fix<A>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<A: Eq> Eq for Fix<A>
[src]