This function provides a customized print method for objects of class 'exactt'. It formats and displays the call and summary stored within such objects. The output is intended to provide a clear, readable presentation of the essential information contained in the object.
# S3 method for class 'exactt'
print(x, digits = 5, ...)An object of class 'exactt', typically containing at least a 'call' and a 'summary' component. The 'call' is expected to be an expression representing how the object was created. The 'summary' should contain a summary of the object, which can be any form that can be formatted and printed.
An integer controlling the number of significant digits to print.
Additional arguments passed to the print function, potentially modifying the output or print behavior (e.g., controlling the number of digits printed).
Invisible NULL. The function is used for its side effect of printing to the console.