Trait lambda_calculus::data::list::convert::IntoChurchList [] [src]

pub trait IntoChurchList {
    fn into_church(self) -> Term;
}

Required Methods

Performs the conversion.

Implementations on Foreign Types

impl IntoChurchList for Vec<Term>
[src]

[src]

impl<T: IntoChurchNum> IntoChurchList for Vec<T>
[src]

[src]

Implementors