[][src]Trait lhlist::Member

pub trait Member<TargetL> {
    type Output: Bool;
}

Check to see if a target label is a list member.

Associated Types

type Output: Bool

True if TargetL is a member, False otherwise.

Loading content...

Implementors

impl<TargetL> Member<TargetL> for Nil[src]

type Output = False

impl<TargetL, L, T> Member<TargetL> for Cons<L, T> where
    L: Label + LabelEq<TargetL>,
    Self: MemberMatch<TargetL, <L as LabelEq<TargetL>>::Output>, 
[src]

type Output = Self::Output

Loading content...