jawk/functions/basic/collection/
mod.rs

1mod get;
2mod size;
3mod sub;
4mod take;
5mod take_last;
6
7use crate::functions_definitions::FunctionsGroup;
8use get::get as get_get;
9use size::get as get_size;
10use sub::get as get_sub;
11use take::get as get_take;
12use take_last::get as get_take_last;
13
14pub fn group() -> FunctionsGroup {
15    FunctionsGroup::new("collection")
16        .add_function(get_get())
17        .add_function(get_size())
18        .add_function(get_take())
19        .add_function(get_take_last())
20        .add_function(get_sub())
21        .add_description_line("Functions that allow to use list or maps as collections")
22}