Package eu.bandm.tools.util
Class Operators
java.lang.Object
eu.bandm.tools.util.Operators
- Direct Known Subclasses:
OperatorsFusion
Deprecated.
This class provides higher-order functional style abstractions for
non-destructive operations on collections of data.
The operations of this class group into several areas:
- Application
- Eager Application — Process a collection of data with an operation, returning a value immediately.
- Lazy Application — Create a collection of data whose values are produced by an operation when accessed. Not accessing elements discards work. Accessing elements multiply multiplies work.
- Lifted Application — Lift the application of an operation to the operation level.
- Construction
- Composition — Constants and constructors of an operations class's inner algebra.
- Conversion — Mappings between operation classes.
- Fusion — Constructors across operation classes. Fusion eliminates the need for storing intermediate data collections.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Deprecated.static class
Deprecated.static class
Deprecated.static class
Deprecated.static class
Deprecated.static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.static interface
Deprecated.Represents binary relations on a single type.(package private) static class
Deprecated.static interface
Deprecated.Represents consuming automata with input typeX
and state typeS
.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.static interface
Deprecated.Represents functions with input typeX
and output typeY
.static interface
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.(package private) static class
Deprecated.static interface
Deprecated.static interface
Deprecated.static interface
Deprecated.Represents multi-valued functions with domainX
and codomainY
.static interface
Deprecated.static interface
Deprecated.static interface
Deprecated.static interface
Deprecated. -
Field Summary
Modifier and TypeFieldDescriptionstatic final Operators.ICons<String,
StringBuffer> Deprecated.static final Operators.Fun<Object,
Class<?>> Deprecated.static final Operators.Fun<Object,
Integer> Deprecated.static final Operators.Fun<Object,
String> Deprecated. -
Constructor Summary
ConstructorDescriptionDeprecated.Prevent this constructor from being called or documented. -
Method Summary
Modifier and TypeMethodDescriptionstatic <X> boolean
all
(Operators.Test<? super X> f, Collection<? extends X> c) Deprecated.static <X> Operators.BinRel<X>
Deprecated.static <X> Operators.Test<Collection<X>>
allElems
(Operators.Test<? super X> f) Deprecated.static <X> Operators.ICons<X,
Boolean> allICons
(Operators.Test<? super X> f) Deprecated.static <X> Operators.Test<Set<X>>
allPairs
(Operators.BinRel<? super X> rel) Deprecated.static <X> boolean
allPairs
(Operators.BinRel<? super X> rel, Set<X> elems) Deprecated.static <X> Operators.Test<Set<X>>
allPairs
(Operators.Rel<? super X, ? super X> rel) Deprecated.static <X> boolean
allPairs
(Operators.Rel<? super X, ? super X> rel, Set<X> elems) Deprecated.static <X,
Y> Operators.Rel<X, Y> allRel()
Deprecated.static <X,
Y> Operators.Rel<X, Y> allRels
(Operators.Rel<? super X, ? super Y>... f) Deprecated.static <X> Operators.Test<X>
allTests
(Operators.Test<? super X>... f) Deprecated.static <X> boolean
any
(Operators.Test<? super X> f, Collection<? extends X> c) Deprecated.static <X> Operators.Test<Collection<X>>
anyElem
(Operators.Test<? super X> f) Deprecated.static <X> Operators.ICons<X,
Boolean> anyICons
(Operators.Test<? super X> f) Deprecated.static <X> Operators.Test<Set<X>>
anyPair
(Operators.BinRel<? super X> rel) Deprecated.static <X> boolean
anyPair
(Operators.Rel<? super X, ? super X> rel, Set<X> elems) Deprecated.static <X,
Y> Operators.Rel<X, Y> anyRel
(Operators.Rel<? super X, ? super Y>... f) Deprecated.static <X> Operators.Test<X>
anyTest
(Operators.Test<? super X>... f) Deprecated.static <X> Operators.Fun<Set<X>,
Set<Set<X>>> binomial
(int k) Deprecated.Deprecated.static <X> Operators.Test<Collection<X>>
chain
(Operators.BinRel<? super X> rel) Deprecated.static <X> boolean
chain
(Operators.Rel<? super X, ? super X> rel, Collection<X> elems) Deprecated.static <X> boolean
chain
(Operators.Rel<? super X, ? super X> rel, Iterator<X> i) Deprecated.static <L1,
L2, R1, R2>
Operators.Rel<L1,R1> compose
(Operators.Fun<? super L1, ? extends L2> f, Operators.Fun<? super R1, ? extends R2> g, Operators.Rel<L2, R2> h) Deprecated.static <X,
Y> Operators.BinRel<X> compose
(Operators.Fun<? super X, ? extends Y> f, Operators.BinRel<Y> g) Deprecated.static <X,
Y, Z> Operators.Cons<X, Z> compose
(Operators.Fun<? super X, ? extends Y> f, Operators.Cons<? super Y, Z> g) Deprecated.static <X,
Y, Z> Operators.Fun<X, Z> compose
(Operators.Fun<? super X, ? extends Y> first, Operators.Fun<? super Y, ? extends Z> second) Deprecated.static <X,
Y, Z> Operators.ICons<X, Z> compose
(Operators.Fun<? super X, ? extends Y> f, Operators.ICons<? super Y, Z> g) Deprecated.static <X,
Y, Z> Operators.MCons<X, Z> compose
(Operators.Fun<? super X, ? extends Y> f, Operators.MCons<? super Y, Z> g) Deprecated.static <X,
Y> Operators.Test<X> compose
(Operators.Fun<? super X, ? extends Y> f, Operators.Test<Y> g) Deprecated.static <X,
Y> Operators.Visit<X> compose
(Operators.Fun<? super X, ? extends Y> f, Operators.Visit<? super Y> g) Deprecated.static <X,
Y, Z> Operators.MProd<Z, Y> compose
(Operators.MProd<? extends X, Y> f, Operators.Fun<? super X, ? extends Z> g) Deprecated.static <X,
Y> Collection<Y> comprehend
(Operators.MultiFun<? super X, ? extends Y> f, Collection<X> c) Deprecated.static <X,
Y> Set<Y> comprehend
(Operators.MultiFun<? super X, ? extends Y> f, Set<X> c) Deprecated.static Operators.ICons<String,
StringBuffer> Deprecated.static <X,
Y> Operators.Fun<X, Y> constantFun
(Y c) Deprecated.static <X,
Y> Operators.Cons<X, Y> constantICons
(Y state) Deprecated.static <X> Operators.Test<X>
constantTest
(boolean c) Deprecated.static <X,
Y> Operators.Rel<X, Y> emptyRel()
Deprecated.(package private) static String
Deprecated.static Operators.Fun<Collection<?>,
String> Deprecated.(package private) static String
enumerate
(Collection<?> things) Deprecated.static <X> Operators.BinRel<X>
Deprecated.static <X> Collection<X>
filter
(Operators.Test<? super X> f, Collection<? extends X> c) Deprecated.static <X> Set<X>
filter
(Operators.Test<? super X> f, Set<? extends X> c) Deprecated.static <X> SortedSet<X>
filter
(Operators.Test<? super X> f, SortedSet<X> c) Deprecated.static <X> X
find
(Operators.Test<? super X> f, Collection<? extends X> c) Deprecated.static <X> Operators.MCons<X,
X> findMCons
(Operators.Test<? super X> f) Deprecated.static <X,
S> Operators.Cons<Collection<X>, S> fold
(Operators.Cons<? super X, S> f) Deprecated.static <X,
Y> Y fold
(Operators.Cons<? super X, Y> f, Iterable<? extends X> c, Y state) Deprecated.static <T,
S> Operators.Fun<Collection<T>, S> fold
(Operators.ICons<? super T, S> f) Deprecated.static <X,
Y> Y fold
(Operators.ICons<? super X, Y> f, Iterable<? extends X> c) Deprecated.static <X extends Comparable<? super X>>
Operators.BinRel<X>Deprecated.Return the relation>=
, according to the natural order on the domain type.static <X> Operators.BinRel<X>
greaterOrEqual
(Comparator<? super X> ord) Deprecated.Return the relation>=
, according to the order on the domain type defined by a given comparator.static <X extends Comparable<? super X>>
Operators.BinRel<X>Deprecated.Return the relation>
, according to the natural order on the domain type.static <X> Operators.BinRel<X>
greaterThan
(Comparator<? super X> ord) Deprecated.Return the relation>
, according to the order on the domain type defined by a given comparator.static <X,
Y> Operators.MProd<X, Y> guard
(Operators.MProd<? extends X, Y> f, Operators.Test<? super X> g) Deprecated.static <X,
Y> Operators.Cons<X, Y> guard
(Operators.Test<? super X> f, Operators.Cons<? super X, Y> g) Deprecated.static <X,
Y> Operators.ICons<X, Y> guard
(Operators.Test<? super X> f, Operators.ICons<? super X, Y> g) Deprecated.static <X,
Y> Operators.MCons<X, Y> guard
(Operators.Test<? super X> f, Operators.MCons<? super X, Y> g) Deprecated.static <X> Operators.Test<X>
guard
(Operators.Test<? super X> f, Operators.Test<? super X> g) Deprecated.static <X> Operators.Visit<X>
guard
(Operators.Test<? super X> f, Operators.Visit<? super X> g) Deprecated.static <X,
Y> Operators.Cons<X, Y> Deprecated.static <X> Operators.Fun<X,
X> Deprecated.static <X> Operators.Fun<X,
X> identityFun
(Class<X> domain) Deprecated.static <X> Operators.MCons<X,
?> Deprecated.static <X> Operators.Visit<X>
Deprecated.static <X,
Y> Operators.Fun<X, Y> ifThenElse
(Operators.Test<? super X> c, Operators.Fun<? super X, ? extends Y> f, Operators.Fun<? super X, ? extends Y> g) Deprecated.static <X> Operators.MProd<X,
Iterator<X>> Deprecated.static <X> Operators.BinRel<X>
kernel
(Operators.Fun<X, ?> f) Deprecated.Return a binary relation that holds for elements with equal images under a given function.static <X,
Y> Operators.Test<X> leftSection
(Operators.Rel<X, Y> rel, Y right) Deprecated.static <X extends Comparable<? super X>>
Operators.BinRel<X>Deprecated.Return the relation<=
, according to the natural order on the domain type.static <X> Operators.BinRel<X>
lessOrEqual
(Comparator<? super X> ord) Deprecated.Return the relation<=
, according to the order on the domain type defined by a given comparator.static <X extends Comparable<? super X>>
Operators.BinRel<X>lessThan()
Deprecated.Return the relation<
, according to the natural order on the domain type.static <X> Operators.BinRel<X>
lessThan
(Comparator<? super X> ord) Deprecated.Return the relation<
, according to the order on the domain type defined by a given comparator.static <X,
Y> Operators.Fun<Collection<X>, Collection<Y>> map
(Operators.Fun<? super X, ? extends Y> fun) Deprecated.static <X,
Y> List<Y> map
(Operators.Fun<? super X, ? extends Y> fun, Collection<? extends X> elems) Deprecated.Apply a function to all elements of a collection.static <X,
Y> Set<Y> map
(Operators.Fun<? super X, ? extends Y> fun, Set<? extends X> elems) Deprecated.Apply a function to all elements of a set.static <X,
Y, Z> Map<X, Z> map
(Operators.Fun<? super Y, ? extends Z> fun, Map<X, ? extends Y> elems) Deprecated.Apply a function to all value elements of a map, preserving the keys.static <X,
Y, Z> Operators.Fun<Map<X, Y>, Map<X, Z>> mapMap
(Operators.Fun<? super Y, ? extends Z> fun) Deprecated.static <X,
Y> Operators.Fun<Set<X>, Set<Y>> mapSet
(Operators.Fun<? super X, ? extends Y> fun) Deprecated.static <X,
Y> boolean mfold
(Operators.MCons<? super X, Y> f, Iterable<? extends X> c) Deprecated.static <X,
Y> boolean mfold
(Operators.MCons<? super X, Y> f, Iterable<? extends X> c, Y state) Deprecated.static <X,
S> Operators.MCons<Collection<X>, S> mfold
(Operators.MCons<X, S> f) Deprecated.static <X,
S> Collection<X> munfold
(Operators.MProd<? extends X, S> f) Deprecated.static <X,
S> Collection<X> munfold
(Operators.MProd<? extends X, S> f, S state) Deprecated.static <X> Operators.BinRel<X>
not
(Operators.BinRel<? super X> f) Deprecated.static <X,
Y> Operators.Rel<X, Y> not
(Operators.Rel<? super X, ? super Y> f) Deprecated.static <X> Operators.Test<X>
not
(Operators.Test<? super X> f) Deprecated.static <X> Operators.Fun<Set<X>,
Set<Set<X>>> power()
Deprecated.Deprecated.static <K,
V> Operators.Fun<Map<K, V>, Map<V, Set<K>>> Deprecated.static <X,
Y> Operators.Test<Y> rightSection
(Operators.Rel<X, Y> rel, X left) Deprecated.static <X,
Y> Operators.Fun<X, Y> toFun
(Operators.ICons<? super X, Y> f) Deprecated.static <X,
Y> Operators.ICons<X, Y> toICons
(Operators.Cons<? super X, Y> f, Y state) Deprecated.static <X,
Y> Operators.ICons<X, Y> toICons
(Operators.MCons<? super X, Y> f) Deprecated.static <X,
Y> Operators.MCons<X, Y> toMCons
(Operators.Cons<? super X, Y> f) Deprecated.static <X,
Y> Operators.MCons<X, Y> toMCons
(Operators.ICons<? super X, Y> f) Deprecated.static <X> Operators.MultiFun<X,
X> toMultiFun
(Operators.Fun<? super X, ? extends X> f) Deprecated.static <X> Operators.MultiFun<X,
X> toMultiFun
(Operators.Test<? super X> f) Deprecated.static <X> Operators.Test<X>
toTest
(Operators.Fun<? super X, Boolean> f) Deprecated.static <X> Operators.Visit<X>
toVisit
(Operators.Fun<? super X, ?> f) Deprecated.static <X,
Y> Iterable<Y> virtualComprehend
(Operators.MultiFun<? super X, ? extends Y> f, Iterable<X> c) Deprecated.static <X,
Y> Iterator<Y> virtualComprehend
(Operators.MultiFun<? super X, ? extends Y> f, Iterator<X> i) Deprecated.static <X> Iterable<X>
virtualFilter
(Operators.Test<? super X> f, Iterable<? extends X> c) Deprecated.static <X> Iterator<X>
virtualFilter
(Operators.Test<? super X> f, Iterator<? extends X> i) Deprecated.static <X,
Y> Collection<Y> virtualMap
(Operators.Fun<? super X, ? extends Y> fun, Collection<? extends X> elems) Deprecated.Apply a function to all elements of a collection.static <X,
Y, Z> Map<X, Z> virtualMap
(Operators.Fun<? super Y, ? extends Z> fun, Map<X, Y> elems) Deprecated.Apply a function to all value elements of a map, preserving the keys.static <X,
S> Iterator<X> virtualMProd
(Operators.MProd<? extends X, S> f) Deprecated.static <X,
S> Iterator<X> virtualMProd
(Operators.MProd<? extends X, S> f, S state) Deprecated.static <X> void
visit
(Operators.Visit<? super X> f, Iterable<? extends X> c) Deprecated.static <X> Operators.MCons<X,
?> Deprecated.
-
Field Details
-
toString
Deprecated. -
getClass
Deprecated. -
hashCode
Deprecated. -
concat
Deprecated.
-
-
Constructor Details
-
Operators
Operators()Deprecated.Prevent this constructor from being called or documented.
-
-
Method Details
-
map
public static <X,Y> List<Y> map(Operators.Fun<? super X, ? extends Y> fun, Collection<? extends X> elems) Deprecated.Apply a function to all elements of a collection. Output elements are computed and added in the order input elements are iterated.- Parameters:
fun
- a function.elems
- a collection of input elements.- Returns:
- a collection of output elements.
-
map
Deprecated.Apply a function to all elements of a set. Computation order of output elements is unspecified.- Parameters:
fun
- a function.elems
- a set of input elements.- Returns:
- a set of output elements.
-
map
public static <X,Y, Map<X,Z> Z> map(Operators.Fun<? super Y, ? extends Z> fun, Map<X, ? extends Y> elems) Deprecated.Apply a function to all value elements of a map, preserving the keys. Computation order of output elements is unspecified.- Parameters:
fun
- a function.elems
- a map of input elements.- Returns:
- a map of output elements.
-
virtualMap
public static <X,Y> Collection<Y> virtualMap(Operators.Fun<? super X, ? extends Y> fun, Collection<? extends X> elems) Deprecated.Apply a function to all elements of a collection. Output elements are computed on the fly when accessed.- Parameters:
fun
- a function.elems
- a collection of input elements.- Returns:
- a collection of output elements.
-
virtualMap
public static <X,Y, Map<X,Z> Z> virtualMap(Operators.Fun<? super Y, ? extends Z> fun, Map<X, Y> elems) Deprecated.Apply a function to all value elements of a map, preserving the keys. Output elements are computed on the fly when accessed.- Parameters:
fun
- a function.elems
- a map of input elements.- Returns:
- a map of output elements.
-
fold
Deprecated. -
fold
Deprecated. -
visit
Deprecated. -
mfold
public static <X,Y> boolean mfold(Operators.MCons<? super X, Y> f, Iterable<? extends X> c, Y state) Deprecated. -
mfold
Deprecated. -
munfold
Deprecated. -
munfold
Deprecated. -
virtualMProd
Deprecated. -
virtualMProd
Deprecated. -
find
Deprecated. -
any
Deprecated. -
all
Deprecated. -
filter
Deprecated. -
filter
Deprecated. -
filter
Deprecated. -
virtualFilter
Deprecated. -
virtualFilter
Deprecated. -
comprehend
public static <X,Y> Collection<Y> comprehend(Operators.MultiFun<? super X, ? extends Y> f, Collection<X> c) Deprecated. -
comprehend
Deprecated. -
virtualComprehend
public static <X,Y> Iterable<Y> virtualComprehend(Operators.MultiFun<? super X, ? extends Y> f, Iterable<X> c) Deprecated. -
virtualComprehend
public static <X,Y> Iterator<Y> virtualComprehend(Operators.MultiFun<? super X, ? extends Y> f, Iterator<X> i) Deprecated. -
chain
Deprecated. -
chain
Deprecated. -
anyPair
Deprecated. -
allPairs
Deprecated. -
allPairs
Deprecated. -
binomial
Deprecated. -
power
Deprecated. -
identityFun
Deprecated. -
identityFun
Deprecated. -
constantFun
Deprecated. -
compose
public static <X,Y, Operators.Fun<X,Z> Z> compose(Operators.Fun<? super X, ? extends Y> first, Operators.Fun<? super Y, ? extends Z> second) Deprecated. -
identityCons
Deprecated. -
constantICons
Deprecated. -
identityVisit
Deprecated. -
zeroMCons
Deprecated. -
identityMCons
Deprecated. -
iteratorMProd
Deprecated. -
constantTest
Deprecated. -
emptyRel
Deprecated. -
allRel
Deprecated. -
allBinRel
Deprecated. -
equalsRel
Deprecated. -
toMultiFun
Deprecated. -
toMultiFun
Deprecated. -
toICons
Deprecated. -
toMCons
Deprecated. -
toFun
Deprecated. -
toMCons
Deprecated. -
toICons
Deprecated. -
findMCons
Deprecated. -
anyICons
Deprecated. -
allICons
Deprecated. -
toVisit
Deprecated. -
toTest
Deprecated. -
leftSection
Deprecated. -
rightSection
Deprecated. -
ifThenElse
public static <X,Y> Operators.Fun<X,Y> ifThenElse(Operators.Test<? super X> c, Operators.Fun<? super X, ? extends Y> f, Operators.Fun<? super X, ? extends Y> g) Deprecated. -
reverseMap
Deprecated. -
not
Deprecated. -
anyTest
Deprecated. -
allTests
Deprecated. -
not
Deprecated. -
anyRel
Deprecated. -
allRels
Deprecated. -
not
Deprecated. -
lessThan
Deprecated.Return the relation<
, according to the natural order on the domain type. This order is assumed to be consistent withequals
. -
lessThan
Deprecated.Return the relation<
, according to the order on the domain type defined by a given comparator. This order is assumed to be consistent withequals
.- Parameters:
ord
- a comparator defining the desired total order.
-
lessOrEqual
Deprecated.Return the relation<=
, according to the natural order on the domain type. This order is assumed to be consistent withequals
. -
lessOrEqual
Deprecated.Return the relation<=
, according to the order on the domain type defined by a given comparator. This order is assumed to be consistent withequals
.- Parameters:
ord
- a comparator defining the desired total order.
-
greaterThan
Deprecated.Return the relation>
, according to the natural order on the domain type. This order is assumed to be consistent withequals
. -
greaterThan
Deprecated.Return the relation>
, according to the order on the domain type defined by a given comparator. This order is assumed to be consistent withequals
.- Parameters:
ord
- a comparator defining the desired total order.
-
greaterOrEqual
Deprecated.Return the relation>=
, according to the natural order on the domain type. This order is assumed to be consistent withequals
. -
greaterOrEqual
Deprecated.Return the relation>=
, according to the order on the domain type defined by a given comparator. This order is assumed to be consistent withequals
.- Parameters:
ord
- a comparator defining the desired total order.
-
map
public static <X,Y> Operators.Fun<Collection<X>,Collection<Y>> map(Operators.Fun<? super X, ? extends Y> fun) Deprecated. -
mapSet
Deprecated. -
mapMap
public static <X,Y, Operators.Fun<Map<X,Z> Y>, mapMapMap<X, Z>> (Operators.Fun<? super Y, ? extends Z> fun) Deprecated. -
binomial
Deprecated. -
power
Deprecated. -
anyElem
Deprecated. -
allElems
Deprecated. -
fold
Deprecated. -
fold
Deprecated. -
mfold
Deprecated. -
chain
Deprecated. -
anyPair
Deprecated. -
allPairs
Deprecated. -
allPairs
Deprecated. -
compose
public static <X,Y, Operators.Cons<X,Z> Z> compose(Operators.Fun<? super X, ? extends Y> f, Operators.Cons<? super Y, Z> g) Deprecated. -
compose
public static <X,Y, Operators.ICons<X,Z> Z> compose(Operators.Fun<? super X, ? extends Y> f, Operators.ICons<? super Y, Z> g) Deprecated. -
compose
public static <X,Y> Operators.Visit<X> compose(Operators.Fun<? super X, ? extends Y> f, Operators.Visit<? super Y> g) Deprecated. -
compose
public static <X,Y, Operators.MCons<X,Z> Z> compose(Operators.Fun<? super X, ? extends Y> f, Operators.MCons<? super Y, Z> g) Deprecated. -
compose
public static <X,Y, Operators.MProd<Z,Z> Y> compose(Operators.MProd<? extends X, Y> f, Operators.Fun<? super X, ? extends Z> g) Deprecated. -
guard
Deprecated. -
guard
public static <X,Y> Operators.Cons<X,Y> guard(Operators.Test<? super X> f, Operators.Cons<? super X, Y> g) Deprecated. -
guard
public static <X,Y> Operators.ICons<X,Y> guard(Operators.Test<? super X> f, Operators.ICons<? super X, Y> g) Deprecated. -
guard
public static <X> Operators.Visit<X> guard(Operators.Test<? super X> f, Operators.Visit<? super X> g) Deprecated. -
guard
public static <X,Y> Operators.MCons<X,Y> guard(Operators.Test<? super X> f, Operators.MCons<? super X, Y> g) Deprecated. -
guard
public static <X,Y> Operators.MProd<X,Y> guard(Operators.MProd<? extends X, Y> f, Operators.Test<? super X> g) Deprecated. -
compose
public static <X,Y> Operators.Test<X> compose(Operators.Fun<? super X, ? extends Y> f, Operators.Test<Y> g) Deprecated. -
compose
public static <L1,L2, Operators.Rel<L1,R1, R2> R1> compose(Operators.Fun<? super L1, ? extends L2> f, Operators.Fun<? super R1, ? extends R2> g, Operators.Rel<L2, R2> h) Deprecated. -
compose
public static <X,Y> Operators.BinRel<X> compose(Operators.Fun<? super X, ? extends Y> f, Operators.BinRel<Y> g) Deprecated. -
kernel
Deprecated.Return a binary relation that holds for elements with equal images under a given function. -
concat
Deprecated. -
enumerate
Deprecated. -
enumerate
Deprecated. -
enumerate
Deprecated.
-
eu.bandm.tools.ops.*
instead.