sexp_type2 | R Documentation |
Get internal (C
) data types; See
https://cran.r-project.org/doc/manuals/r-release/R-ints.pdf Page 1
for more different SEXPTYPE
s.
sexp_type2(x)
## S3 method for class 'sexp_type2'
as.character(x, ...)
## S3 method for class 'sexp_type2'
print(x, ...)
x |
any R object |
... |
ignored |
An integer of class "sexp_type2"
storage.mode
# 1 vs 1L
# Integer case
sexp_type2(1L)
# double
sexp_type2(1)
# Built-in function
sexp_type2(`+`)
# normal functions
sexp_type2(sexp_type2)
# symbols (quoted names)
sexp_type2(quote(`+`))
# Calls (quoted expressions)
sexp_type2(quote({`+`}))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.