Pair
Link to pair
Importing the class
Link to 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.
ZenScript Copyimport crafttweaker.api.util.Pair;
Static Methods
Link to static-methods
Name: of
Return Type: Pair<F,S>
ZenScript CopyPair.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
Link to methods
Name: getFirst
Return Type: F
ZenScript CopyPair.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 |
Name: getSecond
Return Type: S
ZenScript CopyPair.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 |
Name: mapFirst
Return Type: Pair<F2,S>
ZenScript CopyPair.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 |
Name: mapSecond
Return Type: Pair<F,S2>
ZenScript CopyPair.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 |
Name: swap
Return Type: Pair<S,F>
ZenScript CopyPair.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 |