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