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