1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//! functions for generic operations on data
//! ## Data (//flowstdlib/data)

/// A module that implements String concatenation
#[path = "append/append.rs"]
pub mod append;
/// A module that implements accumulating an array from a number of elements
#[path = "accumulate/accumulate.rs"]
pub mod accumulate;
/// A module that counts data passed thru it
#[path = "count/count.rs"]
pub mod count;
/// A module that duplicates objects into an array of them
#[path = "duplicate/duplicate.rs"]
pub mod duplicate;
/// A module that enumerates entries of an array
#[path = "enumerate/enumerate.rs"]
pub mod enumerate;
/// A module with a function to get info about a Value
#[path = "info/info.rs"]
pub mod info;
/// A module that splits a String into an array of strings
#[path = "ordered_split/ordered_split.rs"]
pub mod ordered_split;
/// A module that removes elements from an array
#[path = "remove/remove.rs"]
pub mod remove;
/// A module with a function to sort values into an ordered array of numbers
#[path = "sort/sort.rs"]
pub mod sort;
/// A module that splits a String into an array of strings
#[path = "split/split.rs"]
pub mod split;
/// A module that zips two sets of data into a set of tuples of data
#[path = "zip/zip.rs"]
pub mod zip;