We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92b0def commit 1b6c589Copy full SHA for 1b6c589
Project.toml
@@ -1,7 +1,7 @@
1
name = "DataAPI"
2
uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
3
authors = ["quinnj <[email protected]>"]
4
-version = "1.8.0"
+version = "1.9.0"
5
6
[compat]
7
julia = "1"
src/DataAPI.jl
@@ -161,8 +161,12 @@ end
161
162
"""
163
Cols(cols...)
164
+ Cols(f::Function)
165
166
Select the union of the selections in `cols`. If `cols == ()`, select no columns.
167
+
168
+If the only positional argument is a `Function` `f` then select the columns whose
169
+names passed to the `f` predicate as strings return `true`.
170
171
struct Cols{T<:Tuple}
172
cols::T
0 commit comments