Metadata: Metadata functions

25-MetadataR Documentation

Metadata functions

Description

Metadata functions.

Usage

## S4 method for signature 'Rcpp_MPCR'
storage.mode(x)
## S4 method for signature 'Rcpp_MPCR'
typeof(x)
## S4 method for signature 'Rcpp_MPCR'
MPCR.object.size(x)
## S4 method for signature 'Rcpp_MPCR'
MPCR.ChangePrecision(x,precision)

Arguments

x

An MPCR object.

precision

String with the required precision.

Value

Prints/change metadata about an MPCR object.

Examples


  library(MPCR)

  x <- as.MPCR(1:20,precision="double")
  typeof(x)
  MPCR.ChangePrecision(x,"single")
  MPCR.is.single(x) #True


MPCR documentation built on Aug. 23, 2026, 5:10 p.m.

Related to Metadata in MPCR...