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

com.twitter.summingbird.javaapi.Predicate Maven / Gradle / Ivy

The newest version!
package com.twitter.summingbird.javaapi;

/**
 * A function that takes one parameter and returns a boolean meant to use in filter(p)
 * lambdas in java 8 can be passed to methods taking an interface defining only one method.
 *
 * @author Julien Le Dem
 *
 * @param  return type
 */
public interface Predicate {
  boolean test(T v);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy