fn is_less_than()

in src/data/cpu_utilization.rs [76:85]


    fn is_less_than(self, other: UtilValues) -> bool {
        !(self.user >= other.user
            && self.nice >= other.nice
            && self.system >= other.system
            && self.irq >= other.irq
            && self.softirq >= other.softirq
            && self.idle >= other.idle
            && self.iowait >= other.iowait
            && self.steal >= other.steal)
    }