diff --git a/Project.toml b/Project.toml index e117f72..09e53a7 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "DataAPI" uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a" authors = ["quinnj "] -version = "1.7.0" +version = "1.8.0" [compat] julia = "1" diff --git a/src/DataAPI.jl b/src/DataAPI.jl index 7fbbd29..602d17b 100644 --- a/src/DataAPI.jl +++ b/src/DataAPI.jl @@ -195,4 +195,18 @@ function semijoin end function antijoin end function crossjoin end +""" + nrow(t) + +Return the number of rows of table `t`. +""" +function nrow end + +""" + ncol(t) + +Return the number of columns of table `t`. +""" +function ncol end + end # module