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

    Basic usage Table OrderedTable CountTable Hashing See also Imports Types Consts Procs Iterators Templates Source Edit The tables module implements variants of a...
  • 一等迭代器

    一等迭代器 一等迭代器 Nim 中有两种迭代器: inline (内联)和 closure (闭包)迭代器。 inline iterator “内联迭代器” 总是被编译器内联优化, 这种抽象也就不会带来任何额外开销(零成本抽象),但代码体积可能大大增加。 请警惕: 在使用内联迭代器时,循环体会被内联进循环中所有的 yield 语句里,所以理想情况是...
  • 数值字面值

    数值字面值 自定义数值字面值 数值字面值 数值字面量的形式为: hexdigit = digit | 'A' .. 'F' | 'a' .. 'f' octdigit = '0' .. '7' bindigit = '0' .. '1' unary_minus = '-' # See the s...
  • system

    System module Strings and characters Seqs Sets Numbers Ordinals Misc Example Sample output Passing Channels Safely Imports Types Vars Lets Consts Procs Iterators M...
  • Distinct类型

    Distinct类型 模拟货币 避免SQL注入攻击 Distinct类型 distinct 类型是源于 base type “基类”的新类型,一个重要的特性是,它和其基类型之间 不 是父子类型关系。 但允许显式将 distinct 类型转换到基类型,反之亦然。请参阅 distinctBase 以获得反向操作的相关信息。 如果 distinct...
  • Distinct类型

    Distinct类型 模拟货币 避免SQL注入攻击 Distinct类型 distinct 类型是从 基类型 派生的新类型与它的基类型不兼容。 特别是,它是一种不同类型的基本属性,它 并不 意味着它和基本类型之间的子类型关系。 允许从不同类型到其基本类型的显式类型转换,反之亦然。另请参阅 distinctBase 以获得逆操作。 如果基类型是序...
  • colors

    Imports Types Consts Procs Templates Source Edit This module implements color handling for Nim, namely color mixing and parsing the CSS color names. Imports strutil...
  • typetraits

    Imports Types Procs Macros Templates Exports Source Edit This module defines compile-time reflection procs for working with types. Unstable API. Example: import ...
  • 作用域规则

    1038 2020-04-25 《Nim 1.2 语言手册》
    作用域规则 块作用域 元组或对象作用域 模块作用域 代码重排 作用域规则 标识符从其声明点开始有效,直到声明发生的块结束。 标识符已知的范围是标识符的范围。 标识符的确切范围取决于它的声明方式。 块作用域 在块的声明部分中声明的变量的 作用域 从声明点到块结束有效。 如果块包含第二个块,其中标识符被重新声明,则在该块内,第二个声明将是有...
  • cgi

    Imports Types Procs Iterators Exports Source Edit This module implements helper procs for CGI applications. Example: import std /[ strtabs , cgi ] # Fill the va...