type_of: A Fuzzier Version of 'typeof()'

View source: R/type.R

type_ofR Documentation

A Fuzzier Version of typeof()

Description

Numerics that are equivalent to integers (e.g x == floor(x)) are classified as integers, and builtin and special functions are reported as closures.

Usage

type_of(object)

Arguments

object

the object to check the type of

Value

character(1L) the type of the object

Examples


type_of(1.0001)          # numeric
type_of(1.0)             # integer (`typeof` returns numeric)
type_of(1)               # integer (`typeof` returns numeric)
type_of(sum)             # closure (`typeof` returns builtin)
type_of(`$`)             # closure (`typeof` returns special)

vetr documentation built on Jan. 7, 2023, 1:19 a.m.