krangl / krangl / kotlin.collections.List

Extensions for kotlin.collections.List

AND

infix fun List<Boolean?>.AND(other: List<Boolean?>): List<Boolean?>

asDf

fun List<ColSpec>.asDf(): DataFrame

bindRows

Adds new rows. Missing entries are set to null. The output of bindRows() will contain a column if that column appears in any of the inputs.

fun List<DataFrame>.bindRows(): DataFrame

concat

Vectorized string concatenation.

infix fun List<Any?>.concat(right: List<Any?>): List<String>

cumSum

fun <T : Number> List<T>.cumSum(): Iterable<Double>

mean

fun List<Double>.mean(): Double

not

operator fun List<Boolean?>.not(): List<Boolean?>

OR

infix fun List<Boolean?>.OR(other: List<Boolean?>): BooleanArray

print

fun List<ColSpec>.print(): Unit

XOR

infix fun List<Boolean?>.XOR(other: List<Boolean?>): BooleanArray