R/fastmatch.R

Defines functions fmatch.hash fmatch

Documented in fmatch fmatch.hash

fmatch <- function(x, table, nomatch = NA_integer_, incomparables = NULL)
  .Call(C_fmatch, x, table, nomatch, incomparables, FALSE)

fmatch.hash <- function(x, table, nomatch = NA_integer_, incomparables = NULL)
  .Call(C_fmatch, x, table, nomatch, incomparables, TRUE)

`%fin%` <- function (x, table)
  .Call(C_fmatch, x, table, 0L, NULL, FALSE) > 0L

Try the fastmatch package in your browser

Any scripts or data that you put into this service are public.

fastmatch documentation built on Aug. 18, 2023, 9:07 a.m.