@@ -10,6 +10,7 @@ import org.jetbrains.kotlinx.dataframe.DataFrame
1010import org.jetbrains.kotlinx.dataframe.DataRow
1111import org.jetbrains.kotlinx.dataframe.Predicate
1212import org.jetbrains.kotlinx.dataframe.RowFilter
13+ import org.jetbrains.kotlinx.dataframe.annotations.AccessApiOverload
1314import org.jetbrains.kotlinx.dataframe.annotations.Interpretable
1415import org.jetbrains.kotlinx.dataframe.columns.ColumnGroup
1516import org.jetbrains.kotlinx.dataframe.columns.ColumnPath
@@ -426,6 +427,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
426427 * @see [ColumnsSelectionDsl.allExcept]
427428 * @see [ColumnsSelectionDsl.cols]
428429 */
430+ @AccessApiOverload
429431 public fun KProperty <* >.allCols (): TransformableColumnSet <* > = columnGroup(this ).allCols()
430432
431433 /* *
@@ -1829,6 +1831,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
18291831 * @param [column] The specified column after which all columns should be taken. This column can be referenced
18301832 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
18311833 */
1834+ @AccessApiOverload
18321835 public fun <C > KProperty<C>.allColsAfter (column : ColumnSelector <C , * >): ColumnSet <* > =
18331836 columnGroup(this ).allColsAfter(column)
18341837
@@ -1890,6 +1893,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
18901893 * @param [column] The specified column after which all columns should be taken. This column can be referenced
18911894 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
18921895 */
1896+ @AccessApiOverload
18931897 public fun KProperty <* >.allColsAfter (column : ColumnPath ): ColumnSet <* > = columnGroup(this ).allColsAfter(column)
18941898
18951899 /* * ## All (Cols) After
@@ -1950,6 +1954,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
19501954 * @param [column] The specified column after which all columns should be taken. This column can be referenced
19511955 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
19521956 */
1957+ @AccessApiOverload
19531958 public fun KProperty <* >.allColsAfter (column : String ): ColumnSet <* > = columnGroup(this ).allColsAfter(column)
19541959
19551960 /* * ## All (Cols) After
@@ -2010,6 +2015,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
20102015 * @param [column] The specified column after which all columns should be taken. This column can be referenced
20112016 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
20122017 */
2018+ @AccessApiOverload
20132019 public fun KProperty <* >.allColsAfter (column : AnyColumnReference ): ColumnSet <* > =
20142020 columnGroup(this ).allColsAfter(column)
20152021
@@ -2071,6 +2077,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
20712077 * @param [column] The specified column after which all columns should be taken. This column can be referenced
20722078 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
20732079 */
2080+ @AccessApiOverload
20742081 public fun KProperty <* >.allColsAfter (column : KProperty <* >): ColumnSet <* > = columnGroup(this ).allColsAfter(column)
20752082
20762083 /* * ## All (Cols) After
@@ -3725,6 +3732,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
37253732 * @param [column] The specified column from which all columns should be taken. This column can be referenced
37263733 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
37273734 */
3735+ @AccessApiOverload
37283736 public fun <C > KProperty<C>.allColsFrom (column : ColumnSelector <C , * >): ColumnSet <* > =
37293737 columnGroup(this ).allColsFrom(column)
37303738
@@ -3786,6 +3794,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
37863794 * @param [column] The specified column from which all columns should be taken. This column can be referenced
37873795 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
37883796 */
3797+ @AccessApiOverload
37893798 public fun KProperty <* >.allColsFrom (column : ColumnPath ): ColumnSet <* > = columnGroup(this ).allColsFrom(column)
37903799
37913800 /* * ## All (Cols) From
@@ -3846,6 +3855,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
38463855 * @param [column] The specified column from which all columns should be taken. This column can be referenced
38473856 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
38483857 */
3858+ @AccessApiOverload
38493859 public fun KProperty <* >.allColsFrom (column : String ): ColumnSet <* > = columnGroup(this ).allColsFrom(column)
38503860
38513861 /* * ## All (Cols) From
@@ -3906,6 +3916,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
39063916 * @param [column] The specified column from which all columns should be taken. This column can be referenced
39073917 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
39083918 */
3919+ @AccessApiOverload
39093920 public fun KProperty <* >.allColsFrom (column : AnyColumnReference ): ColumnSet <* > =
39103921 columnGroup(this ).allColsFrom(column)
39113922
@@ -3967,6 +3978,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
39673978 * @param [column] The specified column from which all columns should be taken. This column can be referenced
39683979 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
39693980 */
3981+ @AccessApiOverload
39703982 public fun KProperty <* >.allColsFrom (column : KProperty <* >): ColumnSet <* > = columnGroup(this ).allColsFrom(column)
39713983
39723984 /* * ## All (Cols) From
@@ -5620,6 +5632,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
56205632 * @param [column] The specified column before which all columns should be taken. This column can be referenced
56215633 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
56225634 */
5635+ @AccessApiOverload
56235636 public fun <C > KProperty<C>.allColsBefore (column : ColumnSelector <C , * >): ColumnSet <* > =
56245637 columnGroup(this ).allColsBefore(column)
56255638
@@ -5681,6 +5694,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
56815694 * @param [column] The specified column before which all columns should be taken. This column can be referenced
56825695 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
56835696 */
5697+ @AccessApiOverload
56845698 public fun KProperty <* >.allColsBefore (column : ColumnPath ): ColumnSet <* > = columnGroup(this ).allColsBefore(column)
56855699
56865700 /* * ## All (Cols) Before
@@ -5741,6 +5755,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
57415755 * @param [column] The specified column before which all columns should be taken. This column can be referenced
57425756 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
57435757 */
5758+ @AccessApiOverload
57445759 public fun KProperty <* >.allColsBefore (column : String ): ColumnSet <* > = columnGroup(this ).allColsBefore(column)
57455760
57465761 /* * ## All (Cols) Before
@@ -5801,6 +5816,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
58015816 * @param [column] The specified column before which all columns should be taken. This column can be referenced
58025817 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
58035818 */
5819+ @AccessApiOverload
58045820 public fun KProperty <* >.allColsBefore (column : AnyColumnReference ): ColumnSet <* > =
58055821 columnGroup(this ).allColsBefore(column)
58065822
@@ -5862,6 +5878,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
58625878 * @param [column] The specified column before which all columns should be taken. This column can be referenced
58635879 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
58645880 */
5881+ @AccessApiOverload
58655882 public fun KProperty <* >.allColsBefore (column : KProperty <* >): ColumnSet <* > = columnGroup(this ).allColsBefore(column)
58665883
58675884 /* * ## All (Cols) Before
@@ -7516,6 +7533,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
75167533 * @param [column] The specified column up to which all columns should be taken. This column can be referenced
75177534 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
75187535 */
7536+ @AccessApiOverload
75197537 public fun <C > KProperty<C>.allColsUpTo (column : ColumnSelector <C , * >): ColumnSet <* > =
75207538 columnGroup(this ).allColsUpTo(column)
75217539
@@ -7577,6 +7595,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
75777595 * @param [column] The specified column up to which all columns should be taken. This column can be referenced
75787596 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
75797597 */
7598+ @AccessApiOverload
75807599 public fun KProperty <* >.allColsUpTo (column : ColumnPath ): ColumnSet <* > = columnGroup(this ).allColsUpTo(column)
75817600
75827601 /* * ## All (Cols) Up To
@@ -7637,6 +7656,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
76377656 * @param [column] The specified column up to which all columns should be taken. This column can be referenced
76387657 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
76397658 */
7659+ @AccessApiOverload
76407660 public fun KProperty <* >.allColsUpTo (column : String ): ColumnSet <* > = columnGroup(this ).allColsUpTo(column)
76417661
76427662 /* * ## All (Cols) Up To
@@ -7697,6 +7717,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
76977717 * @param [column] The specified column up to which all columns should be taken. This column can be referenced
76987718 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
76997719 */
7720+ @AccessApiOverload
77007721 public fun KProperty <* >.allColsUpTo (column : AnyColumnReference ): ColumnSet <* > =
77017722 columnGroup(this ).allColsUpTo(column)
77027723
@@ -7758,6 +7779,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
77587779 * @param [column] The specified column up to which all columns should be taken. This column can be referenced
77597780 * to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
77607781 */
7782+ @AccessApiOverload
77617783 public fun KProperty <* >.allColsUpTo (column : KProperty <* >): ColumnSet <* > = columnGroup(this ).allColsUpTo(column)
77627784
77637785 /* * ## All (Cols) Up To
0 commit comments