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