Skip to content

Commit d6d1b05

Browse files
authored
add a groupby method (#64)
1 parent b1e6855 commit d6d1b05

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DataAPI"
22
uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
33
authors = ["quinnj <[email protected]>"]
4-
version = "1.15.0"
4+
version = "1.16.0"
55

66
[compat]
77
julia = "1"

src/DataAPI.jl

+4
Original file line numberDiff line numberDiff line change
@@ -522,4 +522,8 @@ Return the row number of `row` in the source table.
522522
"""
523523
function rownumber end
524524

525+
# To avoid type piracy and method ambiguities, implementations of `groupby`
526+
# must restrict the first argument to a type defined in the same package.
527+
function groupby end
528+
525529
end # module

0 commit comments

Comments
 (0)