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 {
8383 * @include [CommonRangeOfColumnsDocs]
8484 * {@set [CommonRangeOfColumnsDocs.Example] `"fromColumn"`[`..`][String.rangeTo]`Type::toColumn`}
8585 */
86+ @AccessApiOverload
8687 public operator fun String.rangeTo (endInclusive : KProperty <* >): ColumnSet <* > =
8788 toColumnAccessor().rangeTo(endInclusive.toColumnAccessor())
8889
@@ -113,6 +114,7 @@ public interface ColumnRangeColumnsSelectionDsl {
113114 * @include [CommonRangeOfColumnsDocs]
114115 * {@set [CommonRangeOfColumnsDocs.Example] `Type::fromColumn`[`..`][KProperty.rangeTo]`toColumn`}
115116 */
117+ @AccessApiOverload
116118 public operator fun KProperty <* >.rangeTo (endInclusive : AnyColumnReference ): ColumnSet <* > =
117119 toColumnAccessor().rangeTo(endInclusive)
118120
You can’t perform that action at this time.
0 commit comments