R/hash.R

Defines functions hash

# Hash arbitrary R values by serializing them and calculating a hash
# of the XDR representation. "Version" here is the format version; only
# 2 and 3 are supported.
hash <- function(value, version)
	paste(as.character(.Call(C_hash, value, version)), collapse = '')

Try the depcache package in your browser

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

depcache documentation built on June 21, 2022, 9:06 a.m.