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

Method order_by

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

Source from the content-addressed store, hash-verified

598 pub fn where_eq(self, col: &str, value: &str) -> Self {
599 self.add_text(CsvLogic::And, col, CsvCompare::Eq, value)
600 }
601
602 pub fn where_ne(self, col: &str, value: &str) -> Self {
603 self.add_text(CsvLogic::And, col, CsvCompare::Ne, value)
604 }
605
606 pub fn where_lt(self, col: &str, value: impl Into<f64>) -> Self {
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 {

Callers 2

order_by_ascMethod · 0.80
order_by_descMethod · 0.80

Calls 1

colMethod · 0.45

Tested by

no test coverage detected