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