getInstantiationTime.Object: Gets the time when the object was instantiated

getInstantiationTime.ObjectR Documentation

Gets the time when the object was instantiated

Description

Gets the time when the object was instantiated (created) as a POSIXt object.

Usage

## S3 method for class 'Object'
getInstantiationTime(this, ...)

Arguments

...

Not used.

Details

The instantiation time stamp is set when the object is created, and only of option "R.oo::BasicObject/instantiationTime" is TRUE.

Value

Returns a POSIXt object, which extends class POSIXct.

Author(s)

Henrik Bengtsson

See Also

For more about time formats and POSIX see DateTimeClasses. For more information see Object.

Examples

  oopts <- options("R.oo::Object/instantiationTime"=TRUE)
  obj <- Object()
  print(getInstantiationTime(obj))
  options(oopts)

R.oo documentation built on June 12, 2022, 9:05 a.m.