(indices: Vec<usize>, current_ids: Vec<u128>)
| 26 | |
| 27 | impl Filters { |
| 28 | pub fn new(indices: Vec<usize>, current_ids: Vec<u128>) -> Self { |
| 29 | Filters { |
| 30 | current_indices: indices, |
| 31 | current_ids: current_ids, |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | pub fn get_indices(&self) -> (Vec<usize>, Vec<u128>) { |
| 36 | (self.current_indices.clone(), self.current_ids.clone()) |
nothing calls this directly
no outgoing calls
no test coverage detected