
org.broadinstitute.hellbender.utils.SerializableFunction Maven / Gradle / Ivy
The newest version!
package org.broadinstitute.hellbender.utils;
import java.io.Serializable;
import java.util.function.Function;
/**
* Represents a {@link Function} that is {@link Serializable}.
*/
@FunctionalInterface
public interface SerializableFunction extends Function, Serializable {
@Override
R apply(T t);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy