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 @@ -226,14 +226,14 @@ public interface ColColumnsSelectionDsl<out _UNUSED> {
226226 */
227227 @Suppress(" INAPPLICABLE_JVM_NAME" )
228228 @JvmName(" colUnTyped" )
229- @Interpretable(" Col " )
229+ @Interpretable(" ColByStringUntyped " )
230230 public fun col (name : String ): ColumnAccessor <* > = column<Any ?>(name)
231231
232232 /* *
233233 * @include [ColNameDocs] {@set [CommonColDocs.RECEIVER]}
234234 * @include [CommonColDocs.ColumnTypeParam]
235235 */
236- @Interpretable(" ColUntyped " )
236+ @Interpretable(" ColByString " )
237237 public fun <C > col (name : String ): ColumnAccessor <C > = column(name)
238238
239239 /* *
@@ -524,12 +524,14 @@ public interface ColColumnsSelectionDsl<out _UNUSED> {
524524 */
525525 @Suppress(" INAPPLICABLE_JVM_NAME" )
526526 @JvmName(" colUnTyped" )
527+ @Interpretable(" ColByIndexUntyped" )
527528 public fun ColumnsSelectionDsl <* >.col (index : Int ): SingleColumn <* > = col<Any ?>(index)
528529
529530 /* *
530531 * @include [ColIndexDocs] {@set [CommonColDocs.RECEIVER]}
531532 * @include [CommonColDocs.ColumnTypeParam]
532533 */
534+ @Interpretable(" ColByIndex" )
533535 public fun <C > ColumnsSelectionDsl <* >.col (index : Int ): SingleColumn <C > = asSingleColumn().col<C >(index)
534536
535537 /* *
You can’t perform that action at this time.
0 commit comments