书栈网 · BookStack 本次搜索耗时 0.017 秒,为您找到 17661 个相关结果.
  • 一等迭代器

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

    上下文编码(Contextual Escaping) HTML 编码(Escaping HTML) HTML 属性编码(Escaping HTML Attributes) URL 编码(Escaping URLs) CSS 编码(Escaping CSS) JavaScript 编码(Escaping JavaScript) 上下文编码(C...
  • linearScanEnd pragma

    449 2020-10-18 《Nim v1.4 Manual》
    linearScanEnd pragma linearScanEnd pragma The linearScanEnd pragma can be used to tell the compiler how to compile a Nim case statement. Syntactically it has to be used as a s...
  • Command invocation syntax

    414 2020-10-18 《Nim v1.4 Manual》
    Command invocation syntax Command invocation syntax Routines can be invoked without the () if the call is syntactically a statement. This command invocation syntax also works ...
  • Class Phalcon\Debug\Dump

    393 2021-02-20 《Phalcon v2.0 文档》
    Class Phalcon\Debug\Dump Methods Class Phalcon\Debug\Dump Dumps information about a variable(s) <? php $foo = 123 ; echo ( new \Phalcon\Debug\Dump ())-> var ( $f...
  • 方法调用语法

    方法调用语法 方法调用语法 调用例程有一个语法糖:语法 obj.method(args) 可以用来代替 method(obj,args) 。如果没有剩余的参数,则可以省略括号: obj.len (而不是 len(obj) )。 此方法调用语法不限于对象,它可以用于任何类型: import strutils   echo "abc" . l...
  • 维基访问数据

    维基访问数据 维基访问数据 参考: http://dumps.wikimedia.org/other/pagecounts-raw/ 创建表结构: CREATE TABLE wikistat ( date Date , time DateTime , project String , s...
  • 维基访问数据

    维基访问数据 维基访问数据 参考: http://dumps.wikimedia.org/other/pagecounts-raw/ 创建表结构: CREATE TABLE wikistat ( date Date , time DateTime , project String , s...
  • WikiStat

    WikiStat WikiStat 参考: http://dumps.wikimedia.org/other/pagecounts-raw/ 创建表结构: CREATE TABLE wikistat ( date Date , time DateTime , project String , ...
  • Text

    Text 方法 startwith endwith insert isEmpty toCamelName toPascalName toUnderScoreCase Text 类名: Imi\Util\Text 字符串工具类 方法 startwith 字符串是否以另一个字符串开头 // true var_dump...