com.annimon.stream.function.LongConsumer Maven / Gradle / Ivy
The newest version!
package com.annimon.stream.function;
/**
* Represents an operation on a {@code long}-valued input argument.
*
* @since 1.1.4
* @see Consumer
*/
@FunctionalInterface
public interface LongConsumer {
/**
* Performs operation on the given argument.
*
* @param value the input argument
*/
void accept(long value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy