R/RcppExports.R

Defines functions editdist str2strvec

Documented in editdist str2strvec

# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

#' Convert string into string vector
#' 
#' @param str A string to be converted. 
#' @param len Dividing length of string. 
#' @export
str2strvec <- function(str, len = 1L) {
    .Call(`_wameicheckr_str2strvec`, str, len)
}

#' Editing distance (Levenshtein distance) of two string vectors
#' 
#' @param s1 A string to be compared. 
#' @param s2 A string to be compared. 
#' @param len Dividing length of string. 
#' @export
editdist <- function(s1, s2, len = 1L) {
    .Call(`_wameicheckr_editdist`, s1, s2, len)
}
matutosi/wameicheckr documentation built on Aug. 14, 2024, 4:39 p.m.