Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod cross;
mod range;
mod zip;

use crate::functions_definitions::FunctionsGroup;
use cross::get as get_cross;
use range::get as get_range;
use zip::get as get_zip;

pub fn group() -> FunctionsGroup {
    FunctionsGroup::new("list_producers")
        .add_function(get_range())
        .add_function(get_zip())
        .add_function(get_cross())
        .add_description_line("Functions to create lists")
}