Skip to content

Commit

Permalink
Fix NOTE about mismatched method signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Aug 11, 2023
1 parent ece3fbb commit 993219a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/map.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ Map <- R6Class(
)
)

as.list.Map <- function(map) {
as.list.Map <- function(x, ...) {
map$values()
}
length.Map <- function(map) {
length.Map <- function(x) {
map$size()
}

0 comments on commit 993219a

Please sign in to comment.