1 package com.github.davidmoten.rx;
2
3 import rx.functions.Func1;
4
5 /**
6 * A convenient sorthand way of specifying a Func1 used in a filter for
7 * instance.
8 *
9 * @param <T>
10 * item type
11 */
12 public interface Predicate<T> extends Func1<T, Boolean> {
13
14 }