Skip to content

Commit 92b0def

Browse files
authored
add nrow and ncol (#40)
1 parent 4ed7f79 commit 92b0def

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-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.7.0"
4+
version = "1.8.0"
55

66
[compat]
77
julia = "1"

src/DataAPI.jl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,4 +223,18 @@ function semijoin end
223223
function antijoin end
224224
function crossjoin end
225225

226+
"""
227+
nrow(t)
228+
229+
Return the number of rows of table `t`.
230+
"""
231+
function nrow end
232+
233+
"""
234+
ncol(t)
235+
236+
Return the number of columns of table `t`.
237+
"""
238+
function ncol end
239+
226240
end # module

0 commit comments

Comments
 (0)