R.oo (version 1.22.0)

ll.Object: Generates a list of informative properties of all members of an Object

Description

Generates a list of informative properties of all members of an Object.

Usage

# S3 method for Object
ll(this, ...)

Arguments

...

Any arguments accepted by the underlying function ll().

Value

Returns a data.frame containing information about all the members.

See Also

ll.default(). For more information see Object.

Examples

Run this code
# NOT RUN {
  obj <- Object()
  obj$x <- 1:100
  obj$y <- 100:1
  ll(obj)

  
# }
# NOT RUN {
  gives:

    member data.class dimension objectSize
  1      x    numeric       100        424
  2      y    numeric       100        424
  
# }

Run the code above in your browser using DataCamp Workspace