From 856ad5217073e5eb3000d09dd9c08d98ac6d9324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogumi=C5=82=20Kami=C5=84ski?= Date: Fri, 22 Apr 2022 00:29:11 +0200 Subject: [PATCH 1/2] add allcombinations --- src/DataAPI.jl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/DataAPI.jl b/src/DataAPI.jl index 5abbf6e..567b8e8 100644 --- a/src/DataAPI.jl +++ b/src/DataAPI.jl @@ -279,4 +279,12 @@ Return the number of columns of table `t`. """ function ncol end +""" + allcombinations(sink, ...) + +Create table from all combinations of values in passed arguments +using a `sink` function to materialize the table. +""" +function allcombinations end + end # module From 35723d7e6baec1afd0a5be72d6ab0d0f775e3132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogumi=C5=82=20Kami=C5=84ski?= Date: Fri, 22 Apr 2022 00:30:33 +0200 Subject: [PATCH 2/2] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a9d0dde..729668d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "DataAPI" uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a" authors = ["quinnj "] -version = "1.9.0" +version = "1.10.0" [compat] julia = "1"