Package it.unibo.alchemist.boundary
Interface ExportFilter
-
- All Implemented Interfaces:
-
java.io.Serializable
@FunctionalInterface() public interface ExportFilter implements Serializable
Expresses a flat map operation over a double.
-
-
Method Summary
-
-
Method Detail
-
apply
abstract Iterable<Double> apply(double value)
From a single value, builds a stream of values.
- Parameters:
value
- the input value- Returns:
a sequence of double values. In most cases, it will be a single value, but may easily be an iterator with no elements (in case the value must be filtered). Also, the case in which a single value gets mapped onto multiple values is supported by this interface.
-
-
-
-