R/isHex.R

Defines functions isHex

Documented in isHex

#do not edit, edit noweb/qmrparser.nw
isHex        <- function(ch) ( '0' <= ch && ch <= '9' ) || ('a' <= ch && ch <= 'f') || ('A' <= ch && ch <= 'F')

Try the qmrparser package in your browser

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

qmrparser documentation built on April 24, 2022, 1:05 a.m.