org.infinispan.stream.impl.intops.object.MapToLongOperation Maven / Gradle / Ivy
package org.infinispan.stream.impl.intops.object;
import org.infinispan.stream.impl.intops.IntermediateOperation;
import java.util.function.ToLongFunction;
import java.util.stream.LongStream;
import java.util.stream.Stream;
/**
* Performs map to long operation on a regular {@link Stream}
* @param the type of the input stream
*/
public class MapToLongOperation implements IntermediateOperation, Long, LongStream> {
private final ToLongFunction super I> function;
public MapToLongOperation(ToLongFunction super I> function) {
this.function = function;
}
@Override
public LongStream perform(Stream stream) {
return stream.mapToLong(function);
}
public ToLongFunction super I> getFunction() {
return function;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy