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> {
241241 */
242242 @Suppress(" INAPPLICABLE_JVM_NAME" )
243243 @JvmName(" colUnTyped" )
244+ @Interpretable(" SingleColumnNestedColUntyped" )
244245 public fun SingleColumn <DataRow <* >>.col (name : String ): SingleColumn <* > = col<Any ?>(name)
245246
246247 /* *
247248 * @include [ColNameDocs] {@set [CommonColDocs.RECEIVER] myColumnGroup.}
248249 * @include [CommonColDocs.ColumnTypeParam]
249250 */
251+ @Interpretable(" SingleColumnNestedCol" )
250252 public fun <C > SingleColumn <DataRow <* >>.col (name : String ): SingleColumn <C > =
251253 this .ensureIsColumnGroup().transformSingle {
252254 val child = it.getCol(name)?.cast<C >()
You can’t perform that action at this time.
0 commit comments