existe: existe

View source: R/HerramientasAutonomas.R

existeR Documentation

existe

Description

Comprueba si un objeto existe en memoria

Usage

existe(objeto)

Arguments

objeto

El nombre del objeto

Value

TRUE si existe, FALSE si no.

Author(s)

Jose Alejandro Morán Pérez

Examples

temporal3x3mpl0 <- "un objeto"
existe(temporal3x3mpl0) #-> TRUE
existe("temporal3x3mpl0") #-> TRUE
rm(list = "temporal3x3mpl0")
existe("temporal3x3mpl0") #-> FALSE

jaleo/HerramientasAle documentation built on Oct. 12, 2023, 1:14 a.m.