convert

open fun convert(@NonNull arr: Array<Boolean>): List<Boolean>

Convert array of booleans to the list of Boolean objects

Return

The list of Boolean objects

Parameters

arr

The array of booleans

open fun convert(@NonNull arr: Array<Byte>): List<Byte>

Convert array of bytes to the list of Byte objects

Return

The list of Byte objects

Parameters

arr

The array of bytes

open fun convert(@NonNull arr: Array<Char>): List<Character>

Convert array of chars to the list of Character objects

Return

The list of Characters objects

Parameters

arr

The array of char

open fun convert(@NonNull arr: Array<Short>): List<Short>

Convert array of shorts to the list of Short objects

Return

The list of Short objects

Parameters

arr

The array of shorts

open fun convert(@NonNull arr: Array<Int>): List<Integer>

Convert array of ints to the list of Integer objects

Return

The list of Integer objects

Parameters

arr

The array of ints

open fun convert(@NonNull arr: Array<Long>): List<Long>

Convert array of longs to the list of Long objects

Return

The list of Long objects

Parameters

arr

The array of longs

open fun convert(@NonNull arr: Array<Float>): List<Float>

Convert array of floats to the list of Float objects

Return

The list of Float objects

Parameters

arr

The array of floats

open fun convert(@NonNull arr: Array<Double>): List<Double>

Convert array of doubles to the list of Double objects

Return

The list of Double objects

Parameters

arr

The array of doubles

open fun convert(@NonNull arr: Array<Any>): List<Any>

Convert array of Objects to the list of Objects

Return

The list of Objects

Parameters

arr

The array of Objects