MCPcopy Create free account
hub / github.com/PerroEngine/Perro / order_by_asc

Method order_by_asc

perro_source/core/perro_csv/src/lib.rs:609–611  ·  view source on GitHub ↗
(self, col: &str)

Source from the content-addressed store, hash-verified

607 self.add_number(CsvLogic::And, col, CsvCompare::Lt, value.into())
608 }
609
610 pub fn where_le(self, col: &str, value: impl Into<f64>) -> Self {
611 self.add_number(CsvLogic::And, col, CsvCompare::Le, value.into())
612 }
613
614 pub fn where_gt(self, col: &str, value: impl Into<f64>) -> Self {

Calls 1

order_byMethod · 0.80