7 lines
136 B
Java
7 lines
136 B
Java
package io.reactivex.functions;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface Predicate<T> {
|
|
boolean a(T t) throws Exception;
|
|
}
|