All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.markozajc.ef.consumer.ByteConsumer Maven / Gradle / Ivy

package com.github.markozajc.ef.consumer;

import java.util.function.Consumer;

/**
 * A {@link Consumer} variant that takes a primitive byte type.
 *
 * @author Marko Zajc
 */
public interface ByteConsumer {

	/**
	 * Performs this operation on the given argument.
	 *
	 * @param p
	 *            the input argument
	 */
	void accept(byte p);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy