书栈网 · BookStack 本次搜索耗时 0.012 秒,为您找到 650 个相关结果.
  • Pre-defined floating point types

    447 2020-10-18 《Nim v1.4 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...
  • 异常追踪

    异常追踪 异常追踪 Nim 支持异常追踪。 raises 编译指示可以显式定义过程/迭代器/方法/转换器所允许抛出的异常。编译期会加以验证: proc p ( what : bool ) {. raises : [ IOError , OSError ].} = if what : raise newExcep...
  • Varargs pragma

    507 2020-10-18 《Nim v1.4 Manual》
    Varargs pragma Varargs pragma The varargs pragma can be applied to procedures only (and procedure types). It tells Nim that the proc can take a variable number of parameters a...
  • 模块

    模块 模块 Nim支持通过模块概念将程序拆分为多个部分。 每个模块都需要在自己的文件中,并且有自己的 命名空间 。 模块启用 信息隐藏 and 分开编译 。 模块可以通过 import 语句访问另一个模块的符号。 递归模块依赖 是允许的,但有点微妙。 仅导出标有星号(* )的顶级符号。 有效的模块名称只能是有效的Nim标识符(因此其文件名为 标识符....
  • cstring类型

    cstring类型 cstring类型 cstring 类型意味着 compatible string 是编译后端的字符串的原生表示。 对于C后端,cstring 类型表示一个指向零终止char数组的指针,该数组与Ansi C中的 char* 类型兼容。 其主要目的在于与C轻松互通。 索引操作 s [i] 表示 s 的第i个 char;但...
  • 过程类型

    过程类型 过程类型 过程类型在内部是指向过程的指针。 nil 是过程类型变量的允许值。 Nim使用过程类型来实现 函数式 编程技术。 Examples: proc printItem ( x : int ) = ...   proc forEach ( c : proc ( x : int ) {. cdecl .}...
  • cstring类型

    cstring类型 cstring类型 cstring 类型意味着 compatible string 是编译后端的字符串的原生表示。 对于C后端,cstring 类型表示一个指向零终止char数组的指针,该数组与Ansi C中的 char* 类型兼容。 其主要目的在于与C轻松互通。 索引操作 s [i] 表示 s 的第i个 char;但是没有执行...
  • packages/docutils/highlite

    Imports Types Consts Procs Source Edit Source highlighter for programming or markup languages. Currently only few languages are supported, other languages may be added....
  • 过程类型

    过程类型 过程类型 过程类型在内部是指向过程的指针。 nil 是过程类型变量的允许值。 Nim使用过程类型来实现 函数式 编程技术。 Examples: proc printItem ( x : int ) = ...   proc forEach ( c : proc ( x : int ) {. cdecl .})...
  • Chrome DevTools

    2298 2018-03-19 《Node.js 调试指南》
    4.2.1 使用 Chrome DevTools 4.2.2 NIM 4.2.3 inspect-process 4.2.4 process._debugProcess 4.2.5 参考链接 调试是每个程序员必备的技能,因此选择合适的调试工具能极大地方便我们调试代码。Node.js 的调试方式也有很多,常见的有: 万能的 consol...