Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package io.reactivex.functions;
/* loaded from: classes2.dex */
public interface Action {
void run() throws Exception;
}

View 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;
}

View 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;
}

View 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;
}

View File

@@ -0,0 +1,6 @@
package io.reactivex.functions;
/* loaded from: classes2.dex */
public interface BooleanSupplier {
boolean a() throws Exception;
}

View File

@@ -0,0 +1,6 @@
package io.reactivex.functions;
/* loaded from: classes2.dex */
public interface Cancellable {
void cancel() throws Exception;
}

View File

@@ -0,0 +1,6 @@
package io.reactivex.functions;
/* loaded from: classes2.dex */
public interface Consumer<T> {
void accept(T t) throws Exception;
}

View File

@@ -0,0 +1,6 @@
package io.reactivex.functions;
/* loaded from: classes2.dex */
public interface Function<T, R> {
R apply(T t) throws Exception;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}

View File

@@ -0,0 +1,5 @@
package io.reactivex.functions;
/* loaded from: classes2.dex */
public interface LongConsumer {
}

View File

@@ -0,0 +1,6 @@
package io.reactivex.functions;
/* loaded from: classes2.dex */
public interface Predicate<T> {
boolean a(T t) throws Exception;
}