R/pointer.R

Defines functions newPointer

# copyright (C) 2015 A.Rebecq

newPointer <- function(inputValue) 
  { 
  object=new.env(parent=globalenv()) 
  object$value=inputValue 
  class(object)='pointer'
  
  return(object) 
}  

Try the icarus package in your browser

Any scripts or data that you put into this service are public.

icarus documentation built on May 31, 2023, 9:43 p.m.