Skip to content

Commit

Permalink
Remove noOverlap
Browse files Browse the repository at this point in the history
  • Loading branch information
Puzzled-Face committed Oct 9, 2023
1 parent d6d5434 commit 6080820
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 36 deletions.
15 changes: 0 additions & 15 deletions R/helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -103,21 +103,6 @@ matchTolerance <- function(x, table) {
!is.na(matchTolerance(x = x, table = table))
}

##' Check overlap of two character vectors
##'
##' @param a first character vector
##' @param b second character vector
##' @return returns TRUE if there is no overlap between the two character
##' vectors, otherwise FALSE
##'
##' @keywords internal
noOverlap <- function(a, b) {
identical(
intersect(a, b),
character(0)
)
}

##' checks for whole numbers (integers)
##'
##' @param x the numeric vector
Expand Down
21 changes: 0 additions & 21 deletions man/noOverlap.Rd

This file was deleted.

0 comments on commit 6080820

Please sign in to comment.