You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/and.kt
+1-186Lines changed: 1 addition & 186 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ import kotlin.reflect.KProperty
21
21
/**
22
22
* See [Usage]
23
23
*/
24
-
publicinterfaceAndColumnsSelectionDsl<outT> {
24
+
publicinterfaceAndColumnsSelectionDsl {
25
25
26
26
/**
27
27
* ## And Operator Usage
@@ -646,191 +646,6 @@ public interface AndColumnsSelectionDsl<out T> {
646
646
toColumnAccessor() and other.toColumnAccessor()
647
647
648
648
// endregion
649
-
650
-
// region ColumnsSelector
651
-
652
-
/**
653
-
* ## And Operator
654
-
* The [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator allows you to combine selections of columns or simply select multiple columns at once.
655
-
*
656
-
* You can even mix and match any [Access API][org.jetbrains.kotlinx.dataframe.documentation.AccessApi]!
657
-
*
658
-
* Check out the [Usage][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.Usage] for how to use [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and].
* @return A [ColumnSet][org.jetbrains.kotlinx.dataframe.columns.ColumnSet] that contains all the columns from the [ColumnsResolvers][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] on the left
683
-
* and right side of the [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator.
684
-
*/
685
-
privateinterfaceColumnsSelectorAndDocs {
686
-
687
-
interfaceArgument
688
-
}
689
-
690
-
/** ## And Operator
691
-
* The [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator allows you to combine selections of columns or simply select multiple columns at once.
692
-
*
693
-
* You can even mix and match any [Access API][org.jetbrains.kotlinx.dataframe.documentation.AccessApi]!
694
-
*
695
-
* Check out the [Usage][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.Usage] for how to use [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and].
* @return A [ColumnSet][org.jetbrains.kotlinx.dataframe.columns.ColumnSet] that contains all the columns from the [ColumnsResolvers][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] on the left
720
-
* and right side of the [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator.
721
-
*/
722
-
publicinfixfun <C> ColumnsSelector<T, C>.and(other:ColumnsResolver<C>): ColumnSet<C> =this() and other
723
-
724
-
/** ## And Operator
725
-
* The [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator allows you to combine selections of columns or simply select multiple columns at once.
726
-
*
727
-
* You can even mix and match any [Access API][org.jetbrains.kotlinx.dataframe.documentation.AccessApi]!
728
-
*
729
-
* Check out the [Usage][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.Usage] for how to use [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and].
* @return A [ColumnSet][org.jetbrains.kotlinx.dataframe.columns.ColumnSet] that contains all the columns from the [ColumnsResolvers][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] on the left
754
-
* and right side of the [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator.
755
-
*/
756
-
publicinfixfun <C> ColumnsSelector<T, C>.and(other: () ->ColumnsResolver<C>): ColumnSet<C> =this() and other
757
-
758
-
/** ## And Operator
759
-
* The [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator allows you to combine selections of columns or simply select multiple columns at once.
760
-
*
761
-
* You can even mix and match any [Access API][org.jetbrains.kotlinx.dataframe.documentation.AccessApi]!
762
-
*
763
-
* Check out the [Usage][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.Usage] for how to use [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and].
* @return A [ColumnSet][org.jetbrains.kotlinx.dataframe.columns.ColumnSet] that contains all the columns from the [ColumnsResolvers][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] on the left
788
-
* and right side of the [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator.
789
-
*/
790
-
publicinfixfun <C> ColumnsSelector<T, C>.and(other:String): ColumnSet<*> =this() and other
791
-
792
-
/** ## And Operator
793
-
* The [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator allows you to combine selections of columns or simply select multiple columns at once.
794
-
*
795
-
* You can even mix and match any [Access API][org.jetbrains.kotlinx.dataframe.documentation.AccessApi]!
796
-
*
797
-
* Check out the [Usage][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.Usage] for how to use [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and].
* @return A [ColumnSet][org.jetbrains.kotlinx.dataframe.columns.ColumnSet] that contains all the columns from the [ColumnsResolvers][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] on the left
822
-
* and right side of the [and][org.jetbrains.kotlinx.dataframe.api.AndColumnsSelectionDsl.and] operator.
823
-
*/
824
-
publicinfixfun <C> ColumnsSelector<T, C>.and(other:KProperty<C>): ColumnSet<C> =this() and other
825
-
826
-
// endregion
827
-
828
-
/**
829
-
* Invokes the given [ColumnsSelector] using this [ColumnsSelectionDsl] but only if the [T] of the
830
-
* [ColumnsSelector] matches with the [ColumnsSelectionDsl]`<T>`.
0 commit comments