Pair
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
import crafttweaker.api.util.Pair;
Static Methods
Return Type: Pair<F,S>
Pair.of<F : Object, S : Object>(first as F, second as S) as Pair<F,S>
Parameter | Type | Description |
---|---|---|
Parameter first | Type F | Description No Description Provided |
Parameter second | Type S | Description No Description Provided |
Parameter F | Type Object | Description No Description Provided |
Parameter S | Type Object | Description No Description Provided |
Methods
Return Type: F
Pair.getFirst<F : Object, S : Object>() as F
Parameter | Type | Description |
---|---|---|
Parameter F | Type Object | Description No Description Provided |
Parameter S | Type Object | Description No Description Provided |
Return Type: S
Pair.getSecond<F : Object, S : Object>() as S
Parameter | Type | Description |
---|---|---|
Parameter F | Type Object | Description No Description Provided |
Parameter S | Type Object | Description No Description Provided |
Return Type: Pair<F2,S>
Pair.mapFirst<F : Object, S : Object, F2 : Object>(function as Function<F,F2>) as Pair<F2,S>
Parameter | Type | Description |
---|---|---|
Parameter function | Type Function<F,F2> | Description No Description Provided |
Parameter F | Type Object | Description No Description Provided |
Parameter S | Type Object | Description No Description Provided |
Parameter F2 | Type Object | Description No Description Provided |
Return Type: Pair<F,S2>
Pair.mapSecond<F : Object, S : Object, S2 : Object>(function as Function<S,S2>) as Pair<F,S2>
Parameter | Type | Description |
---|---|---|
Parameter function | Type Function<S,S2> | Description No Description Provided |
Parameter F | Type Object | Description No Description Provided |
Parameter S | Type Object | Description No Description Provided |
Parameter S2 | Type Object | Description No Description Provided |
Return Type: Pair<S,F>
Pair.swap<F : Object, S : Object>() as Pair<S,F>
Parameter | Type | Description |
---|---|---|
Parameter F | Type Object | Description No Description Provided |
Parameter S | Type Object | Description No Description Provided |