Operations on unique pointer types

Implementation of Eq for ~T where <T: Eq>

Method eq

fn eq(&self, other: &~T) -> bool

Method ne

fn ne(&self, other: &~T) -> bool

Implementation of Ord for ~T where <T: Ord>

Method lt

fn lt(&self, other: &~T) -> bool

Method le

fn le(&self, other: &~T) -> bool

Method ge

fn ge(&self, other: &~T) -> bool

Method gt

fn gt(&self, other: &~T) -> bool

Implementation of TotalOrd for ~T where <T: TotalOrd>

Method cmp

fn cmp(&self, other: &~T) -> Ordering

Implementation of TotalEq for ~T where <T: TotalEq>

Method equals

fn equals(&self, other: &~T) -> bool