@@ -70,25 +70,25 @@ class TypeOfUDFParameterNotSupportedException(kClass: KClass<*>, parameterName:
70
70
)
71
71
72
72
@JvmName(" arrayColumnAsSeq" )
73
- fun <DsType , T > TypedColumn <DsType , Array <T >>.asSeq (): TypedColumn <DsType , WrappedArray <T >> = typed()
73
+ fun <DsType , T > TypedColumn <DsType , Array <T >>.asSeq (): TypedColumn <DsType , Seq <T >> = typed()
74
74
@JvmName(" iterableColumnAsSeq" )
75
- fun <DsType , T , I : Iterable <T >> TypedColumn <DsType , I >.asSeq (): TypedColumn <DsType , WrappedArray <T >> = typed()
75
+ fun <DsType , T , I : Iterable <T >> TypedColumn <DsType , I >.asSeq (): TypedColumn <DsType , Seq <T >> = typed()
76
76
@JvmName(" byteArrayColumnAsSeq" )
77
- fun <DsType > TypedColumn <DsType , ByteArray >.asSeq (): TypedColumn <DsType , WrappedArray <Byte >> = typed()
77
+ fun <DsType > TypedColumn <DsType , ByteArray >.asSeq (): TypedColumn <DsType , Seq <Byte >> = typed()
78
78
@JvmName(" charArrayColumnAsSeq" )
79
- fun <DsType > TypedColumn <DsType , CharArray >.asSeq (): TypedColumn <DsType , WrappedArray <Char >> = typed()
79
+ fun <DsType > TypedColumn <DsType , CharArray >.asSeq (): TypedColumn <DsType , Seq <Char >> = typed()
80
80
@JvmName(" shortArrayColumnAsSeq" )
81
- fun <DsType > TypedColumn <DsType , ShortArray >.asSeq (): TypedColumn <DsType , WrappedArray <Short >> = typed()
81
+ fun <DsType > TypedColumn <DsType , ShortArray >.asSeq (): TypedColumn <DsType , Seq <Short >> = typed()
82
82
@JvmName(" intArrayColumnAsSeq" )
83
- fun <DsType > TypedColumn <DsType , IntArray >.asSeq (): TypedColumn <DsType , WrappedArray <Int >> = typed()
83
+ fun <DsType > TypedColumn <DsType , IntArray >.asSeq (): TypedColumn <DsType , Seq <Int >> = typed()
84
84
@JvmName(" longArrayColumnAsSeq" )
85
- fun <DsType > TypedColumn <DsType , LongArray >.asSeq (): TypedColumn <DsType , WrappedArray <Long >> = typed()
85
+ fun <DsType > TypedColumn <DsType , LongArray >.asSeq (): TypedColumn <DsType , Seq <Long >> = typed()
86
86
@JvmName(" floatArrayColumnAsSeq" )
87
- fun <DsType > TypedColumn <DsType , FloatArray >.asSeq (): TypedColumn <DsType , WrappedArray <Float >> = typed()
87
+ fun <DsType > TypedColumn <DsType , FloatArray >.asSeq (): TypedColumn <DsType , Seq <Float >> = typed()
88
88
@JvmName(" doubleArrayColumnAsSeq" )
89
- fun <DsType > TypedColumn <DsType , DoubleArray >.asSeq (): TypedColumn <DsType , WrappedArray <Double >> = typed()
89
+ fun <DsType > TypedColumn <DsType , DoubleArray >.asSeq (): TypedColumn <DsType , Seq <Double >> = typed()
90
90
@JvmName(" booleanArrayColumnAsSeq" )
91
- fun <DsType > TypedColumn <DsType , BooleanArray >.asSeq (): TypedColumn <DsType , WrappedArray <Boolean >> = typed()
91
+ fun <DsType > TypedColumn <DsType , BooleanArray >.asSeq (): TypedColumn <DsType , Seq <Boolean >> = typed()
92
92
93
93
94
94
/* *
0 commit comments