MriImage
and MriImageMetadata
classes and takes the general form of a list of functions with associated frame containing data fields. isListObject
tests for this class, and print.list.object
prints an object of this class.isListObject(object)
## S3 method for class 'list.object':
print(x, ...)
list.object
.print
(though none are supported for this type of object).isListObject
returns TRUE if object
is a list object. print.list.object
is only called for its side-effect.list
. The isListObject
function can be used to test whether a given object is a list object or not. print.list.object
calls the summarise
function within the list object if one is defined; otherwise it prints the result of calling summary(object)
, which will give a list of functions in the object.