Initial commit
This commit is contained in:
6
sources/io/reactivex/functions/Action.java
Normal file
6
sources/io/reactivex/functions/Action.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Action {
|
||||
void run() throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/BiConsumer.java
Normal file
6
sources/io/reactivex/functions/BiConsumer.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface BiConsumer<T1, T2> {
|
||||
void a(T1 t1, T2 t2) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/BiFunction.java
Normal file
6
sources/io/reactivex/functions/BiFunction.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface BiFunction<T1, T2, R> {
|
||||
R apply(T1 t1, T2 t2) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/BiPredicate.java
Normal file
6
sources/io/reactivex/functions/BiPredicate.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface BiPredicate<T1, T2> {
|
||||
boolean a(T1 t1, T2 t2) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/BooleanSupplier.java
Normal file
6
sources/io/reactivex/functions/BooleanSupplier.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface BooleanSupplier {
|
||||
boolean a() throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Cancellable.java
Normal file
6
sources/io/reactivex/functions/Cancellable.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Cancellable {
|
||||
void cancel() throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Consumer.java
Normal file
6
sources/io/reactivex/functions/Consumer.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Consumer<T> {
|
||||
void accept(T t) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Function.java
Normal file
6
sources/io/reactivex/functions/Function.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Function<T, R> {
|
||||
R apply(T t) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Function3.java
Normal file
6
sources/io/reactivex/functions/Function3.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Function3<T1, T2, T3, R> {
|
||||
R apply(T1 t1, T2 t2, T3 t3) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Function4.java
Normal file
6
sources/io/reactivex/functions/Function4.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Function4<T1, T2, T3, T4, R> {
|
||||
R a(T1 t1, T2 t2, T3 t3, T4 t4) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Function5.java
Normal file
6
sources/io/reactivex/functions/Function5.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Function5<T1, T2, T3, T4, T5, R> {
|
||||
R a(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Function6.java
Normal file
6
sources/io/reactivex/functions/Function6.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Function6<T1, T2, T3, T4, T5, T6, R> {
|
||||
R a(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Function7.java
Normal file
6
sources/io/reactivex/functions/Function7.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Function7<T1, T2, T3, T4, T5, T6, T7, R> {
|
||||
R a(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Function8.java
Normal file
6
sources/io/reactivex/functions/Function8.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Function8<T1, T2, T3, T4, T5, T6, T7, T8, R> {
|
||||
R a(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8) throws Exception;
|
||||
}
|
6
sources/io/reactivex/functions/Function9.java
Normal file
6
sources/io/reactivex/functions/Function9.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Function9<T1, T2, T3, T4, T5, T6, T7, T8, T9, R> {
|
||||
R a(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9) throws Exception;
|
||||
}
|
5
sources/io/reactivex/functions/LongConsumer.java
Normal file
5
sources/io/reactivex/functions/LongConsumer.java
Normal file
@@ -0,0 +1,5 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface LongConsumer {
|
||||
}
|
6
sources/io/reactivex/functions/Predicate.java
Normal file
6
sources/io/reactivex/functions/Predicate.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package io.reactivex.functions;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Predicate<T> {
|
||||
boolean a(T t) throws Exception;
|
||||
}
|
Reference in New Issue
Block a user