print
is a generic function for
printing its argument and returning it invisibly (via invisible(x)
).
The function invokes particular methods
which
depend on the class
of the first argument.
The print.default
simply calls the Rfunctions print
or
print.default
.
The print
and print.default
have been
created in order to comply with CRAN policies, because print.htest
.print(x, ...)
## S3 method for class 'default':
print(x, ...)
print
and
print.default
foprint
and
print.default
.print.default
simply calls the Rfunctions print
or
print.default
, depending on the class of the
argument x
.
The print
and print.default
have been
created in order to comply with CRAN policies, because print.htest
. When "htest"
will be printed using the
print.htest
.
See the help files for the Rfunctions print
and
print.default
.print
,
Rhelp file for print.default
,
print.htest
.