[][src]Trait cpp_core::cmp::Ge

pub trait Ge<Rhs: ?Sized = Self> {
    unsafe fn ge(&self, other: &Rhs) -> bool;
}

Represents C++'s operator>=.

Required methods

unsafe fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator.

Loading content...

Implementors

Loading content...