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

Method add_text

perro_source/core/perro_csv/src/lib.rs:672–683  ·  view source on GitHub ↗
(mut self, logic: CsvLogic, col: &str, op: CsvCompare, value: &str)

Source from the content-addressed store, hash-verified

670 pub fn order_by(mut self, col: &str, order: CsvOrder) -> Self {
671 self.sort = Some(CsvSort {
672 col: self.col(col),
673 order,
674 numeric: false,
675 });
676 self
677 }
678
679 pub fn order_by_asc(self, col: &str) -> Self {
680 self.order_by(col, CsvOrder::Asc)
681 }
682
683 pub fn order_by_desc(self, col: &str) -> Self {
684 self.order_by(col, CsvOrder::Desc)
685 }
686

Callers 4

where_eqMethod · 0.80
where_neMethod · 0.80
or_where_eqMethod · 0.80
or_where_neMethod · 0.80

Calls 3

string_to_u64Function · 0.85
pushMethod · 0.45
colMethod · 0.45

Tested by

no test coverage detected