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