Импорт класса

Link to импорт-класса

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
Copy
import crafttweaker.api.util.Pair;

Name: of

Return Type: Pair<F,S>

ZenScript
Copy
Pair.of<F : Object, S : Object>(first as F, second as S) as Pair<F,S>
ПараметрТипОписание
Параметр
first
Тип
F
Описание
No Description Provided
Параметр
second
Тип
S
Описание
No Description Provided
Параметр
F
Тип
Object
Описание
No Description Provided
Параметр
S
Тип
Object
Описание
No Description Provided

Name: getFirst

Return Type: F

ZenScript
Copy
Pair.getFirst<F : Object, S : Object>() as F
ПараметрТипОписание
Параметр
F
Тип
Object
Описание
No Description Provided
Параметр
S
Тип
Object
Описание
No Description Provided

Name: getSecond

Return Type: S

ZenScript
Copy
Pair.getSecond<F : Object, S : Object>() as S
ПараметрТипОписание
Параметр
F
Тип
Object
Описание
No Description Provided
Параметр
S
Тип
Object
Описание
No Description Provided

Name: mapFirst

Return Type: Pair<F2,S>

ZenScript
Copy
Pair.mapFirst<F : Object, S : Object, F2 : Object>(function as Function<F,F2>) as Pair<F2,S>
ПараметрТипОписание
Параметр
function
Тип
Function<F,F2>
Описание
No Description Provided
Параметр
F
Тип
Object
Описание
No Description Provided
Параметр
S
Тип
Object
Описание
No Description Provided
Параметр
F2
Тип
Object
Описание
No Description Provided

Name: mapSecond

Return Type: Pair<F,S2>

ZenScript
Copy
Pair.mapSecond<F : Object, S : Object, S2 : Object>(function as Function<S,S2>) as Pair<F,S2>
ПараметрТипОписание
Параметр
function
Тип
Function<S,S2>
Описание
No Description Provided
Параметр
F
Тип
Object
Описание
No Description Provided
Параметр
S
Тип
Object
Описание
No Description Provided
Параметр
S2
Тип
Object
Описание
No Description Provided

Name: swap

Return Type: Pair<S,F>

ZenScript
Copy
Pair.swap<F : Object, S : Object>() as Pair<S,F>
ПараметрТипОписание
Параметр
F
Тип
Object
Описание
No Description Provided
Параметр
S
Тип
Object
Описание
No Description Provided