showTypeInfo(TypeInfo)
showTypeInfo()所属R语言包:TypeInfo
Display information about argument types
显示参数类型的信息
译者:生物统计家园网 机器人LoveR
描述----------Description----------
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.
这个泛型函数返回一个列表类型规格。在列表中的元素包含签名的不同部位的信息。列表的顺序和白色spece建议结构类型规范。
showTypeInfo is usually invoked with a single argument, the name of the function with type information.
showTypeInfo通常是调用带有一个参数,类型信息的功能的名称。
用法----------Usage----------
showTypeInfo(object, name=character(), prefix="", ...)
参数----------Arguments----------
参数: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 NamedTypeTest, not noramlly assigned by user.
为用于NamedTypeTest衍生物的额外的参数,而不是由用户noramlly分配。
值----------Value----------
A list containing type information for def
含有def类型信息列表
作者(S)----------Author(s)----------
MT Morgan <mtmorgan@fhcrc.org>
参见----------See Also----------
typeInfo
typeInfo
举例----------Examples----------
foo <- function(x) { return(x) }
typeInfo( foo ) <- SimultaneousTypeSpecification(
TypedSignature( x = "numeric" ),
returnType = "numeric" )
res <- showTypeInfo( foo )
cat( res, sep="\n" )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|