书栈网 · BookStack 本次搜索耗时 0.007 秒,为您找到 650 个相关结果.
  • nodecl pragma

    127 2024-07-11 《Nim v2.0 Manual》
    nodecl pragma nodecl pragma The nodecl pragma can be applied to almost any symbol (variable, proc, type, etc.) and is sometimes useful for interoperability with C: It tells Nim...
  • NoDecl pragma

    616 2020-10-18 《Nim v1.4 Manual》
    NoDecl pragma NoDecl pragma The noDecl pragma can be applied to almost any symbol (variable, proc, type, etc.) and is sometimes useful for interoperability with C: It tells Ni...
  • 编译期定义的编译指示

    编译期定义的编译指示 编译期定义的编译指示 此处列出的编译指示可用于在编译时选择接受-d /—define选项中的值。 该实现目前提供以下可能的选项(稍后可以添加各种其他选项)。 pragma description intdefine 读取构建时定义为整数 strdefine 读取构建时定义为字符串 booldefine 读取构建时定义为boo...
  • 编译期定义的编译指示

    编译期定义的编译指示 编译期定义的编译指示 此处列出的编译指示可用于在编译时选择接受-d /—define选项中的值。 该实现目前提供以下可能的选项(稍后可以添加各种其他选项)。 pragma description intdefine 读取构建时定义为整数 strdefine 读取构建时定义为字符串 booldefine 读取构建时定义为boo...
  • Multiline comments

    100 2024-07-11 《Nim v2.0 Manual》
    Multiline comments Multiline comments Starting with version 0.13.0 of the language Nim supports multiline comments. They look like: #[Comment here. Multiple lines are no...
  • 客户端库

    第三方开发的库 第三方开发的库 放弃 Yandex不维护下面列出的库,也没有进行任何广泛的测试以确保其质量。 Python infi.clickhouse_orm clickhouse-driver clickhouse-client PHP SeasClick phpClickHouse clickhouse-php-clien...
  • CodegenDecl pragma

    599 2020-10-18 《Nim v1.4 Manual》
    CodegenDecl pragma CodegenDecl pragma The codegenDecl pragma can be used to directly influence Nim’s code generator. It receives a format string that determines how the variab...
  • Varargs编译指示

    Varargs编译指示 Varargs编译指示 varargs 编译指示只适用于过程 (和过程类型)。 它告诉Nim proc可以在最后指定的参数获取可变数量的参数。 Nim字符串值将自动转换为C字符串: proc printf ( formatstr : cstring ) {. nodecl , varargs .}   prin...
  • Varargs编译指示

    Varargs编译指示 Varargs编译指示 varargs 编译指示只适用于过程 (和过程类型)。 它告诉Nim proc可以在最后指定的参数获取可变数量的参数。 Nim字符串值将自动转换为C字符串: proc printf ( formatstr : cstring ) {. nodecl , varargs .}   prin...
  • Pre-defined floating-point types

    106 2024-07-11 《Nim v2.0 Manual》
    Pre-defined floating-point types Pre-defined floating-point types The following floating-point types are pre-defined: float the generic floating-point type; its size used to ...