![]() |
0.10.8-alpha
|
A container object for functions and processors applying to generic collections, i.e. More...
Classes | |
class | AnyElement |
Returns any element of a collection. More... | |
class | ApplyToAll |
Given a set/list/array, returns a new set/list/array whose content is the result of applying a function to each element. More... | |
class | Contains |
Checks if an object is a member of a collection. More... | |
class | Explode |
A 1:m function provided by the Bags utility class. More... | |
class | FilterElements |
Gets all the elements of the collection that satisfy some condition. More... | |
class | GetSize |
Gets the size of a collection. More... | |
class | IsElement |
Checks if an element is a member of a collection. More... | |
class | MaximumValue |
Returns the element with the maximum value in a collection. More... | |
class | MinimumValue |
Returns the element with the maximum value in a collection. More... | |
class | Product |
Computes the Cartesian product of two collections. More... | |
class | RunOn |
Runs each element of a collection into a processor, and collect its output. More... | |
class | ToArray |
Converts a front of n events into an array of n objects. More... | |
class | ToCollection |
Converts a front of n input events into a collection of n objects. More... | |
class | ToList |
Converts a front of n events into a list of n objects. More... | |
class | ToSet |
Converts a front of n events into a set of n objects. More... | |
Static Public Member Functions | |
static Object [] | toObjectArray (Object o) |
Converts an object into an array. More... | |
Static Public Attributes | |
static final Contains | contains = new Contains() |
Checks if a collection contains another. More... | |
static final IsElement | isElement = new IsElement() |
Checks if an element is contained in a collection. More... | |
static final GetSize | getSize = new GetSize() |
Gets the size of a collection. More... | |
static final Product | product = new Product() |
Computes the Cartesian product of two collections. More... | |
static final AnyElement | anyElement = new AnyElement() |
Gets any element of a bag. More... | |
static final MaximumValue | maxValue = new MaximumValue() |
Gets the maximum value of a collection. More... | |
static final MinimumValue | minValue = new MinimumValue() |
Gets the minimum value of a collection. More... | |
Protected Member Functions | |
Bags () | |
A container object for functions and processors applying to generic collections, i.e.
"bags" of objects.
|
static |
|
static |
|
static |
|
static |