apply

abstract fun apply(value: Double): Iterable<Double>

From a single value, builds a stream of values.

Return

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.

Parameters

value

the input value