graphmine-util / io.github.sof3.graphmine.util / kotlin.LongArray
| mapArray | fun <R> LongArray.mapArray(transform: (Long) -> R): Array<R>Returns an array containing the results of applying the given transform function to each element in the original array |
| mapBooleanArray | fun LongArray.mapBooleanArray(transform: (Long) -> Boolean): BooleanArrayReturns an array containing the results of applying the given transform function to each element in the original array |
| mapByteArray | fun LongArray.mapByteArray(transform: (Long) -> Byte): ByteArrayReturns an array containing the results of applying the given transform function to each element in the original array |
| mapCharArray | fun LongArray.mapCharArray(transform: (Long) -> Char): CharArrayReturns an array containing the results of applying the given transform function to each element in the original array |
| mapDoubleArray | fun LongArray.mapDoubleArray(transform: (Long) -> Double): DoubleArrayReturns an array containing the results of applying the given transform function to each element in the original array |
| mapFloatArray | fun LongArray.mapFloatArray(transform: (Long) -> Float): FloatArrayReturns an array containing the results of applying the given transform function to each element in the original array |
| mapIntArray | fun LongArray.mapIntArray(transform: (Long) -> Int): IntArrayReturns an array containing the results of applying the given transform function to each element in the original array |
| mapLongArray | fun LongArray.mapLongArray(transform: (Long) -> Long): LongArrayReturns an array containing the results of applying the given transform function to each element in the original array |
| mapShortArray | fun LongArray.mapShortArray(transform: (Long) -> Short): ShortArrayReturns an array containing the results of applying the given transform function to each element in the original array |