| existsTemp {svMisc} | R Documentation |
Does a variable exist in the SciViews:TempEnv environment?
existsTemp(x, mode = "any")
x |
the name of the variable (character string). |
mode |
the mode of the seeked variable. |
TRUE if the variable exists in SciViews:TempEnv (and is of the correct
mode), FALSE otherwise.
Philippe Grosjean <phgrosjean@sciviews.org>
TempEnv, assignTemp, changeTemp,
getTemp, rmTemp, addTemp
assignTemp("test", 1:10)
## Check if this variable exists
existsTemp("test")
## Remove it
rmTemp("test")
## Does it still exist?
existsTemp("test")