
taglist
taglist(..., list = NULL, defname = "V")
# S3 method for taglist
print(x, LineLength = getOption("width"), offset.start = 0,
withFinalLineBreak = TRUE, first.print = NULL,
ErrorOrWarn = "warn", ...)
taglist
, respectively,
in print.taglist
, further arguments to be passed to or
from other methods. They are ignored in this function.…
argument; useful to
take in predefined default lists;"V"
; prefix of names given
to a priori unnamed list elements; see belowtaglist
print
will make a linebreak between two tags before this number is
reached; it will not break a tag, however, and only issue an error if
this single tag is longer than max(3*LineLength,getOption("width"))
. TRUE
.NULL
."warn"
or else an errortaglist
invisible()
taglist
is an S3 class inheriting from class list
.
It requires all elements to be uniquely named. Objects of this
class can be generated by a call to the generating function
taglist()
; there is a particular print
method
for this class. The generating function
taglist()
accepts an arbitrary number of (not necessarily named)
arguments and a list of (again not necessarily named) elements;
if in the arguments of taglist()
some list items do not have a
name a priori, all of these get named in the order of appearance
as <defname><position number in arglist>. TL <- taglist("HA"=8,"JUI"=7,"butzi", list=list("HU"="AHAL","HA"="BETA","BUZ"))
print(TL)
print(TL, LineLength=10, first.print="myList=", offset.start=4,
withFinalLineBreak = FALSE)
Run the code above in your browser using DataLab