Description Usage Arguments Value Author(s) See Also Examples
This generic function returns type specifications as a list. Elements in the list contain information about different parts of the signature. The order and white spece of the list suggests structure of the type specification.
showTypeInfo
is usually invoked with a single argument, the
name of the function with type information.
1 | showTypeInfo(object, name=character(), prefix="", ...)
|
object |
The object about which type information is required |
name |
Class name, not normally specified by user. |
prefix |
Used by methods to ensure pretty indentation type specifications. |
... |
Additional arguments used for derivatives of |
A list containing type information for def
MT Morgan <mtmorgan@fhcrc.org>
1 2 3 4 5 6 | foo <- function(x) { return(x) }
typeInfo( foo ) <- SimultaneousTypeSpecification(
TypedSignature( x = "numeric" ),
returnType = "numeric" )
res <- showTypeInfo( foo )
cat( res, sep="\n" )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.