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 @@ -83,6 +83,7 @@ public interface ColumnRangeColumnsSelectionDsl {
83
83
* @include [CommonRangeOfColumnsDocs]
84
84
* {@set [CommonRangeOfColumnsDocs.Example] `"fromColumn"`[`..`][String.rangeTo]`Type::toColumn`}
85
85
*/
86
+ @AccessApiOverload
86
87
public operator fun String.rangeTo (endInclusive : KProperty <* >): ColumnSet <* > =
87
88
toColumnAccessor().rangeTo(endInclusive.toColumnAccessor())
88
89
@@ -113,6 +114,7 @@ public interface ColumnRangeColumnsSelectionDsl {
113
114
* @include [CommonRangeOfColumnsDocs]
114
115
* {@set [CommonRangeOfColumnsDocs.Example] `Type::fromColumn`[`..`][KProperty.rangeTo]`toColumn`}
115
116
*/
117
+ @AccessApiOverload
116
118
public operator fun KProperty <* >.rangeTo (endInclusive : AnyColumnReference ): ColumnSet <* > =
117
119
toColumnAccessor().rangeTo(endInclusive)
118
120
You can’t perform that action at this time.
0 commit comments