dataframe icon indicating copy to clipboard operation
dataframe copied to clipboard

Review discoverability of API inside column selection DSL in IDE

Open koperagen opened this issue 2 years ago • 1 comments

Just putting it here to not forget to have a look at it using completion. There are new functions, new overloads, plus fixes for ColumnSet based functions

public fun SingleColumn<AnyRow>.nameContains(text: CharSequence): ColumnSet<*> = cols { it.name.contains(text) } public fun <C> ColumnSet<C>.nameContains(text: CharSequence): ColumnSet<C> = cols { it.name.contains(text) }

koperagen avatar Apr 08 '23 17:04 koperagen

depends on https://github.com/Kotlin/dataframe/pull/372

Jolanrensen avatar Jun 12 '23 15:06 Jolanrensen