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

Method add_contains

perro_source/core/perro_csv/src/lib.rs:697–706  ·  view source on GitHub ↗
(mut self, logic: CsvLogic, col: &str, needle: &str)

Source from the content-addressed store, hash-verified

695
696 pub fn order_by_num_asc(self, col: &str) -> Self {
697 self.order_by_num(col, CsvOrder::Asc)
698 }
699
700 pub fn order_by_num_desc(self, col: &str) -> Self {
701 self.order_by_num(col, CsvOrder::Desc)
702 }
703
704 pub fn limit(mut self, limit: usize) -> Self {
705 self.limit = Some(limit);
706 self
707 }
708
709 pub fn run(&self) -> CSVQueryResult {

Callers 2

where_containsMethod · 0.80
or_where_containsMethod · 0.80

Calls 2

pushMethod · 0.45
colMethod · 0.45

Tested by

no test coverage detected