File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -241,12 +241,14 @@ public interface ColColumnsSelectionDsl<out _UNUSED> {
241
241
*/
242
242
@Suppress(" INAPPLICABLE_JVM_NAME" )
243
243
@JvmName(" colUnTyped" )
244
+ @Interpretable(" SingleColumnNestedColUntyped" )
244
245
public fun SingleColumn <DataRow <* >>.col (name : String ): SingleColumn <* > = col<Any ?>(name)
245
246
246
247
/* *
247
248
* @include [ColNameDocs] {@set [CommonColDocs.RECEIVER] myColumnGroup.}
248
249
* @include [CommonColDocs.ColumnTypeParam]
249
250
*/
251
+ @Interpretable(" SingleColumnNestedCol" )
250
252
public fun <C > SingleColumn <DataRow <* >>.col (name : String ): SingleColumn <C > =
251
253
this .ensureIsColumnGroup().transformSingle {
252
254
val child = it.getCol(name)?.cast<C >()
You can’t perform that action at this time.
0 commit comments