asSeq

@JvmName(name = "arrayColumnAsSeq")
fun <DsType, T> TypedColumn<DsType, Array<T>>.asSeq(): TypedColumn<DsType, Seq<T>>
@JvmName(name = "iterableColumnAsSeq")
fun <DsType, T, I : Iterable<T>> TypedColumn<DsType, I>.asSeq(): TypedColumn<DsType, Seq<T>>
@JvmName(name = "byteArrayColumnAsSeq")
fun <DsType> TypedColumn<DsType, ByteArray>.asSeq(): TypedColumn<DsType, Seq<Byte>>
@JvmName(name = "charArrayColumnAsSeq")
fun <DsType> TypedColumn<DsType, CharArray>.asSeq(): TypedColumn<DsType, Seq<Char>>
@JvmName(name = "shortArrayColumnAsSeq")
fun <DsType> TypedColumn<DsType, ShortArray>.asSeq(): TypedColumn<DsType, Seq<Short>>
@JvmName(name = "intArrayColumnAsSeq")
fun <DsType> TypedColumn<DsType, IntArray>.asSeq(): TypedColumn<DsType, Seq<Int>>
@JvmName(name = "longArrayColumnAsSeq")
fun <DsType> TypedColumn<DsType, LongArray>.asSeq(): TypedColumn<DsType, Seq<Long>>
@JvmName(name = "floatArrayColumnAsSeq")
fun <DsType> TypedColumn<DsType, FloatArray>.asSeq(): TypedColumn<DsType, Seq<Float>>
@JvmName(name = "doubleArrayColumnAsSeq")
fun <DsType> TypedColumn<DsType, DoubleArray>.asSeq(): TypedColumn<DsType, Seq<Double>>
@JvmName(name = "booleanArrayColumnAsSeq")
fun <DsType> TypedColumn<DsType, BooleanArray>.asSeq(): TypedColumn<DsType, Seq<Boolean>>