本文简要介绍ruby语言中 MakeMakefile.convertible_int
的用法。
用法
convertible_int(type, headers = nil, opts = nil, &b)
返回给定 type
的可转换整数类型。您可以选择指定其他 headers
以搜索 type
。 convertible
表示实际上是同一类型,或从同一类型定义的类型。
如果 type
是整数类型并且找到 convertible
类型,则使用大写的 type
名称将以下宏作为预处理器常量传递给编译器。
-
TYPEOF_
后跟type
名称,然后是=X
其中 “X” 是找到的convertible
类型名称。 -
TYP2NUM
和NUM2TYP
,其中TYP
是大写的type
名称,将_t
后缀替换为 “T”,后跟=X
其中 “X” 是要转换的宏名称type
到Integer
对象,反之亦然。
例如,如果 foobar_t
定义为 unsigned long,则 convertible_int("foobar_t")
将返回 “unsigned long”,并定义以下宏:
#define TYPEOF_FOOBAR_T unsigned long
#define FOOBART2NUM ULONG2NUM
#define NUM2FOOBART NUM2ULONG
相关用法
- Ruby MakeMakefile.create_header用法及代码示例
- Ruby MakeMakefile.create_makefile用法及代码示例
- Ruby MakeMakefile.enable_config用法及代码示例
- Ruby MakeMakefile.have_const用法及代码示例
- Ruby MakeMakefile.with_config用法及代码示例
- Ruby MatchData.pre_match用法及代码示例
- Ruby Matrix lup()用法及代码示例
- Ruby Matrix unitary?()用法及代码示例
- Ruby Matrix symmetric?()用法及代码示例
- Ruby Matrix t()用法及代码示例
- Ruby Matrix identity()用法及代码示例
- Ruby Matrix hash()用法及代码示例
- Ruby Matrix hadamard_product()用法及代码示例
- Ruby Matrix singular?()用法及代码示例
- Ruby Math sqrt()用法及代码示例
- Ruby Matrix round()用法及代码示例
- Ruby Matrix collect()用法及代码示例
- Ruby Math.acosh用法及代码示例
- Ruby Markdown类用法及代码示例
- Ruby Matrix hermitian?()用法及代码示例
- Ruby Matrix row_vectors()用法及代码示例
- Ruby Matrix conjugate()用法及代码示例
- Ruby Math.asinh用法及代码示例
- Ruby Matrix cofactor()用法及代码示例
- Ruby Matrix rectangular()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 MakeMakefile.convertible_int。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。