File tree Expand file tree Collapse file tree
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ public fun <T> AnyRow.cast(): DataRow<T> = this as DataRow<T>
7575
7676public inline fun <reified T > AnyRow.cast (verify : Boolean = true): DataRow <T > = df().cast<T >(verify)[0 ]
7777
78+ @Interpretable(" AnyColCast" )
7879public fun <T > AnyCol.cast (): DataColumn <T > = this as DataColumn <T >
7980
8081public fun <T > ValueColumn <* >.cast (): ValueColumn <T > = this as ValueColumn <T >
@@ -93,6 +94,7 @@ public fun <C> ColumnSet<*>.cast(): ColumnSet<C> = this as ColumnSet<C>
9394
9495public fun <C > ColumnsResolver <* >.cast (): ColumnsResolver <C > = this as ColumnsResolver <C >
9596
97+ @Interpretable(" SingleColumnCast" )
9698public fun <C > SingleColumn <* >.cast (): SingleColumn <C > = this as SingleColumn <C >
9799
98100public fun <C > ColumnReference <* >.cast (): ColumnReference <C > = this as ColumnReference <C >
You can’t perform that action at this time.
0 commit comments