risingwave_common::types::ops

Trait IsNegative

source
pub trait IsNegative: Zero + Ord {
    // Required method
    fn is_negative(&self) -> bool;
}
Expand description

A simplified version of num_traits::Signed. Unlike Signed::is_negative or f64::is_sign_negative, this returns false for -0.0 to keep consistency among integers, decimals and floats.

Required Methods§

source

fn is_negative(&self) -> bool

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Zero + Ord> IsNegative for T