pub enum FcmpPred {
Oeq,
One,
Olt,
Ogt,
Ole,
Oge,
Uno,
Ord,
True_,
False_,
}Expand description
Floating-point comparison predicates for fcmp.
Variants§
Oeq
Ordered equal: oeq
One
Ordered not equal: one
Olt
Ordered less than: olt
Ogt
Ordered greater than: ogt
Ole
Ordered less or equal: ole
Oge
Ordered greater or equal: oge
Uno
Unordered: uno
Ord
Ordered: ord
True_
Always true: true
False_
Always false: false
Trait Implementations§
impl Eq for FcmpPred
impl StructuralPartialEq for FcmpPred
Auto Trait Implementations§
impl Freeze for FcmpPred
impl RefUnwindSafe for FcmpPred
impl Send for FcmpPred
impl Sync for FcmpPred
impl Unpin for FcmpPred
impl UnsafeUnpin for FcmpPred
impl UnwindSafe for FcmpPred
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more