getFields.Object {R.oo} | R Documentation |
Returns the field names of an Object.
## S3 method for class 'Object': getFields(this, private=FALSE, ...)
private |
If TRUE , private fields will also be returned,
otherwise only public fields are returned. |
... |
Not used. |
Returns a character
vector
of field names.
Henrik Bengtsson (http://www.braju.com/R/)
To check if a field exists or not, see *hasField()
.
For more extensive information about the fields in an Object see
*ll()
.
For more information see Object
.
obj <- Object() obj$x <- 1:100 obj$y <- 100:1 getFields(obj) ## Not run: gives: [1] "x" "y" ## End(Not run)