Skip to content

Commit e8f7842

Browse files
authored
add allcombinations (#47)
1 parent 3e905a6 commit e8f7842

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
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.9.0"
4+
version = "1.10.0"
55

66
[compat]
77
julia = "1"

src/DataAPI.jl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,12 @@ Return the number of columns of table `t`.
279279
"""
280280
function ncol end
281281

282+
"""
283+
allcombinations(sink, ...)
284+
285+
Create table from all combinations of values in passed arguments
286+
using a `sink` function to materialize the table.
287+
"""
288+
function allcombinations end
289+
282290
end # module

0 commit comments

Comments
 (0)