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

Method order_by_num

perro_source/core/perro_csv/src/lib.rs:617–624  ·  view source on GitHub ↗
(mut self, col: &str, order: CsvOrder)

Source from the content-addressed store, hash-verified

615 self.add_number(CsvLogic::And, col, CsvCompare::Gt, value.into())
616 }
617
618 pub fn where_ge(self, col: &str, value: impl Into<f64>) -> Self {
619 self.add_number(CsvLogic::And, col, CsvCompare::Ge, value.into())
620 }
621
622 pub fn where_contains(self, col: &str, needle: &str) -> Self {
623 self.add_contains(CsvLogic::And, col, needle)
624 }
625
626 pub fn where_starts_with(self, col: &str, prefix: &str) -> Self {
627 self.add_starts_with(CsvLogic::And, col, prefix)

Callers 2

order_by_num_ascMethod · 0.80
order_by_num_descMethod · 0.80

Calls 1

colMethod · 0.45

Tested by

no test coverage detected