TypedSignature(TypeInfo)
TypedSignature()所属R语言包:TypeInfo
Constructor for a TypedSignature object
为TypedSignature对象的构造函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a constructor function for the TypedSignature-class that represents constraints on the types or values of a combination of parameters. It takes named arguments that identify the types of the parameters. Each parameter type should be an object that is “compatible with” ClassNameOrExpression-class, i.e. a test for inheritance or a dynamic expression.
这是一个TypedSignature-class代表结合参数的类型或值约束的构造函数。它需要命名参数,确定参数的类型。每个参数的类型应该是ClassNameOrExpression-class,即继承或动态表达测试“兼容”的对象。
用法----------Usage----------
TypedSignature(..., returnType, obj = new("TypedSignature", list(...)))
参数----------Arguments----------
参数:...
the types for the parameters given as name = type to identify the parameter and its type description.
name = type给确定的参数及其类型描述参数的类型。
参数:returnType
the type description for the return value. This applies to the particular combination of inputs given in ...
返回值的类型描述。这适用于特定组合给予投入...
参数:obj
the instance to populate with the information given in the other arguments. This allows us to pass in objects of sub-classes to this function or to populate previously created objects.
在其他参数给定的信息实例来填充。这使得我们通过此功能,或在子类的对象来填充先前创建的对象。
值----------Value----------
The populated value of obj, by default an object of class TypedSignature-class.
默认情况下,人口值obj类TypedSignature-class的对象。
作者(S)----------Author(s)----------
Duncan Temple Lang <duncan@wald.ucdavis.edu>
参见----------See Also----------
SimultaneousTypeSpecification typeInfo checkArgs
SimultaneousTypeSpecificationtypeInfocheckArgs
举例----------Examples----------
TypedSignature(x = "logical", y = quote(length(y) == length(x)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|