@@ -206,62 +206,62 @@ string.toDataFrame()
206
206
*/
207
207
208
208
@JvmName(" toDataFrameByte" )
209
- public inline fun <reified B : Byte ? > Iterable<B>.toDataFrame (): DataFrame <OfSingleValueColumn <B >> = toDataFrame {
210
- OfSingleValueColumn <B >::value from { it }
209
+ public inline fun <reified B : Byte ? > Iterable<B>.toDataFrame (): DataFrame <ValueProperty <B >> = toDataFrame {
210
+ ValueProperty <B >::value from { it }
211
211
}.cast()
212
212
213
213
@JvmName(" toDataFrameShort" )
214
- public inline fun <reified S : Short ? > Iterable<S>.toDataFrame (): DataFrame <OfSingleValueColumn <S >> = toDataFrame {
215
- OfSingleValueColumn <S >::value from { it }
214
+ public inline fun <reified S : Short ? > Iterable<S>.toDataFrame (): DataFrame <ValueProperty <S >> = toDataFrame {
215
+ ValueProperty <S >::value from { it }
216
216
}.cast()
217
217
218
218
@JvmName(" toDataFrameInt" )
219
- public inline fun <reified I : Int ? > Iterable<I>.toDataFrame (): DataFrame <OfSingleValueColumn <I >> = toDataFrame {
220
- OfSingleValueColumn <I >::value from { it }
219
+ public inline fun <reified I : Int ? > Iterable<I>.toDataFrame (): DataFrame <ValueProperty <I >> = toDataFrame {
220
+ ValueProperty <I >::value from { it }
221
221
}.cast()
222
222
223
223
@JvmName(" toDataFrameLong" )
224
- public inline fun <reified L : Long ? > Iterable<L>.toDataFrame (): DataFrame <OfSingleValueColumn <L >> = toDataFrame {
225
- OfSingleValueColumn <L >::value from { it }
224
+ public inline fun <reified L : Long ? > Iterable<L>.toDataFrame (): DataFrame <ValueProperty <L >> = toDataFrame {
225
+ ValueProperty <L >::value from { it }
226
226
}.cast()
227
227
228
228
@JvmName(" toDataFrameString" )
229
- public inline fun <reified S : String ? > Iterable<S>.toDataFrame (): DataFrame <OfSingleValueColumn <S >> = toDataFrame {
230
- OfSingleValueColumn <S >::value from { it }
229
+ public inline fun <reified S : String ? > Iterable<S>.toDataFrame (): DataFrame <ValueProperty <S >> = toDataFrame {
230
+ ValueProperty <S >::value from { it }
231
231
}.cast()
232
232
233
233
@JvmName(" toDataFrameChar" )
234
- public inline fun <reified C : Char ? > Iterable<C>.toDataFrame (): DataFrame <OfSingleValueColumn <C >> = toDataFrame {
235
- OfSingleValueColumn <C >::value from { it }
234
+ public inline fun <reified C : Char ? > Iterable<C>.toDataFrame (): DataFrame <ValueProperty <C >> = toDataFrame {
235
+ ValueProperty <C >::value from { it }
236
236
}.cast()
237
237
238
238
@JvmName(" toDataFrameBoolean" )
239
- public inline fun <reified B : Boolean ? > Iterable<B>.toDataFrame (): DataFrame <OfSingleValueColumn <B >> = toDataFrame {
240
- OfSingleValueColumn <B >::value from { it }
239
+ public inline fun <reified B : Boolean ? > Iterable<B>.toDataFrame (): DataFrame <ValueProperty <B >> = toDataFrame {
240
+ ValueProperty <B >::value from { it }
241
241
}.cast()
242
242
243
243
@JvmName(" toDataFrameUByte" )
244
- public inline fun <reified U : UByte ? > Iterable<U>.toDataFrame (): DataFrame <OfSingleValueColumn <U >> = toDataFrame {
245
- OfSingleValueColumn <U >::value from { it }
244
+ public inline fun <reified U : UByte ? > Iterable<U>.toDataFrame (): DataFrame <ValueProperty <U >> = toDataFrame {
245
+ ValueProperty <U >::value from { it }
246
246
}.cast()
247
247
248
248
@JvmName(" toDataFrameUShort" )
249
- public inline fun <reified U : UShort ? > Iterable<U>.toDataFrame (): DataFrame <OfSingleValueColumn <U >> = toDataFrame {
250
- OfSingleValueColumn <U >::value from { it }
249
+ public inline fun <reified U : UShort ? > Iterable<U>.toDataFrame (): DataFrame <ValueProperty <U >> = toDataFrame {
250
+ ValueProperty <U >::value from { it }
251
251
}.cast()
252
252
253
253
@JvmName(" toDataFrameUInt" )
254
- public inline fun <reified U : UInt ? > Iterable<U>.toDataFrame (): DataFrame <OfSingleValueColumn <U >> = toDataFrame {
255
- OfSingleValueColumn <U >::value from { it }
254
+ public inline fun <reified U : UInt ? > Iterable<U>.toDataFrame (): DataFrame <ValueProperty <U >> = toDataFrame {
255
+ ValueProperty <U >::value from { it }
256
256
}.cast()
257
257
258
258
@JvmName(" toDataFrameULong" )
259
- public inline fun <reified U : ULong ? > Iterable<U>.toDataFrame (): DataFrame <OfSingleValueColumn <U >> = toDataFrame {
260
- OfSingleValueColumn <U >::value from { it }
259
+ public inline fun <reified U : ULong ? > Iterable<U>.toDataFrame (): DataFrame <ValueProperty <U >> = toDataFrame {
260
+ ValueProperty <U >::value from { it }
261
261
}.cast()
262
262
263
263
@DataSchema
264
- public interface OfSingleValueColumn <T > {
264
+ public interface ValueProperty <T > {
265
265
public val value: T
266
266
}
267
267
0 commit comments