书栈网 · BookStack 本次搜索耗时 0.037 秒,为您找到 650 个相关结果.
  • typedesc[T]

    602 2020-10-18 《Nim v1.4 Manual》
    typedesc[T] typedesc[T] In many contexts, Nim allows to treat the names of types as regular values. These values exists only during the compilation phase, but since all values...
  • Var 返回类型

    Var 返回类型 未来的方向 Var 返回类型 过程、转换器或者迭代器可以返回 var 类型,表示返回的是一个左值,调用者可以修改它: var g = 0 proc writeAccessToG (): var int = result = g writeAccessToG () = 6 ...
  • 自定义标注

    自定义标注 自定义标注 可以定义自定义类型的编译指示。 自定义编译指示不会直接影响代码生成,但可以通过宏检测它们的存在。 使用带有编译指示“pragma”的注释模板定义自定义编译指示: template dbTable ( name : string , table_space : string = "" ) {. prag...
  • 自定义标注

    自定义标注 自定义标注 可以定义自定义类型的编译指示。 自定义编译指示不会直接影响代码生成,但可以通过宏检测它们的存在。 使用带有编译指示“pragma”的注释模板定义自定义编译指示: template dbTable ( name : string , table_space : string = "" ) {. prag...
  • ImportCpp编译指示

    ImportCpp编译指示 命名空间 枚举Importcpp 过程Importcpp 封装构造函数 封装析构函数 对象的Importcpp ImportCpp编译指示 注意 : c2nim 可以解析C++子集并且知道 importcpp 编译指示模式语言。 没有必要知道这里描述的所有细节。 和 importc pragma for C...
  • socketstreams

    Examples Imports Types Procs Source Edit This module provides an implementation of the streams interface for sockets. It contains two separate implementations, a ReadSo...
  • 常量和常量表达式

    常量和常量表达式 常量和常量表达式 常量 是一个与常量表达式值绑定的符号。 常量表达式仅限于依赖于以下类别的值和操作,因为它们要么构建在语言中,要么在对常量表达式进行语义分析之前进行声明和求值: 字面值 内置运算符 之前声明的常量和编译时变量 之前声明过的宏和模板 之前声明的过程除了可能修改编译时变量之外没有任何副作用 常量表达式可以包含可以在...
  • xmltree

    Imports Types Consts Procs Iterators Macros Source Edit A simple XML tree generator. Example: import std / xmltree var g = newElement ( "myTag" ) g . add n...
  • httpclient

    Retrieving a website Using HTTP POST Progress reporting SSL/TLS support Timeouts Proxy Redirects Imports Types Consts Procs Exports Source Edit This module impl...
  • 可转换关系

    可转换关系 可转换关系 类型 a 可 隐式 转换到类型 b 如果下列算法返回真: proc isImplicitlyConvertible ( a , b : PType ): bool = if isSubtype ( a , b ) or isCovariant ( a , b ): retu...