Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/io/reactivex/functions/Function3.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* A functional interface (callback) that computes a value based on multiple input values.
* @param <T1> the first value type
* @param <T2> the second value type
* @param <T3> the second value type
* @param <T3> the third value type
* @param <R> the result type
*/
public interface Function3<T1, T2, T3, R> {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/functions/Function4.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* A functional interface (callback) that computes a value based on multiple input values.
* @param <T1> the first value type
* @param <T2> the second value type
* @param <T3> the second value type
* @param <T4> the second value type
* @param <T3> the third value type
* @param <T4> the fourth value type
* @param <R> the result type
*/
public interface Function4<T1, T2, T3, T4, R> {
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/io/reactivex/functions/Function5.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
* A functional interface (callback) that computes a value based on multiple input values.
* @param <T1> the first value type
* @param <T2> the second value type
* @param <T3> the second value type
* @param <T4> the second value type
* @param <T5> the second value type
* @param <T3> the third value type
* @param <T4> the fourth value type
* @param <T5> the fifth value type
* @param <R> the result type
*/
public interface Function5<T1, T2, T3, T4, T5, R> {
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/io/reactivex/functions/Function6.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
* A functional interface (callback) that computes a value based on multiple input values.
* @param <T1> the first value type
* @param <T2> the second value type
* @param <T3> the second value type
* @param <T4> the second value type
* @param <T5> the second value type
* @param <T6> the second value type
* @param <T3> the third value type
* @param <T4> the fourth value type
* @param <T5> the fifth value type
* @param <T6> the sixth value type
* @param <R> the result type
*/
public interface Function6<T1, T2, T3, T4, T5, T6, R> {
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/io/reactivex/functions/Function7.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
* A functional interface (callback) that computes a value based on multiple input values.
* @param <T1> the first value type
* @param <T2> the second value type
* @param <T3> the second value type
* @param <T4> the second value type
* @param <T5> the second value type
* @param <T6> the second value type
* @param <T7> the second value type
* @param <T3> the third value type
* @param <T4> the fourth value type
* @param <T5> the fifth value type
* @param <T6> the sixth value type
* @param <T7> the seventh value type
* @param <R> the result type
*/
public interface Function7<T1, T2, T3, T4, T5, T6, T7, R> {
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/io/reactivex/functions/Function8.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
* A functional interface (callback) that computes a value based on multiple input values.
* @param <T1> the first value type
* @param <T2> the second value type
* @param <T3> the second value type
* @param <T4> the second value type
* @param <T5> the second value type
* @param <T6> the second value type
* @param <T7> the second value type
* @param <T8> the second value type
* @param <T3> the third value type
* @param <T4> the fourth value type
* @param <T5> the fifth value type
* @param <T6> the sixth value type
* @param <T7> the seventh value type
* @param <T8> the eighth value type
* @param <R> the result type
*/
public interface Function8<T1, T2, T3, T4, T5, T6, T7, T8, R> {
Expand Down
14 changes: 7 additions & 7 deletions src/main/java/io/reactivex/functions/Function9.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
* A functional interface (callback) that computes a value based on multiple input values.
* @param <T1> the first value type
* @param <T2> the second value type
* @param <T3> the second value type
* @param <T4> the second value type
* @param <T5> the second value type
* @param <T6> the second value type
* @param <T7> the second value type
* @param <T8> the second value type
* @param <T9> the second value type
* @param <T3> the third value type
* @param <T4> the fourth value type
* @param <T5> the fifth value type
* @param <T6> the sixth value type
* @param <T7> the seventh value type
* @param <T8> the eighth value type
* @param <T9> the ninth value type
* @param <R> the result type
*/
public interface Function9<T1, T2, T3, T4, T5, T6, T7, T8, T9, R> {
Expand Down