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

com.github.tommyettinger.function.ByteSupplier Maven / Gradle / Ivy

The newest version!
package com.github.tommyettinger.function;

/**
 * Represents a supplier of {@code byte}-valued results.
 * 
* This is a functional interface whose functional method is {@link #getAsByte()}. */ @FunctionalInterface public interface ByteSupplier { /** * Gets a result. * * @return a result */ byte getAsByte(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy