书栈网 · BookStack 本次搜索耗时 0.013 秒,为您找到 930 个相关结果.
  • Interesting Functions

    432 2020-12-10 《Build your own Lisp》
    Interesting Functions Function Definition Currying Interesting Functions Function Definition Lambdas are clearly a simple and powerful way of defining functions. But the s...
  • 2.10 变量 (Variables)

    2.10 变量 (Variables) 2.10 变量 (Variables) let 是一个最常用的 Common Lisp 的操作符之一,它让你引入新的局部变量(local variable): > ( let (( x 1 ) ( y 2 )) (+ x y )) 3 一个 let 表达式有两个...
  • Natural Grammars

    421 2020-12-10 《Build your own Lisp》
    Natural Grammars Natural Grammars mpc lets us write grammars in a more natural form too. Rather than using C functions that look less like a grammar, we can specify the whole...
  • Mixing Different Parameter Types(混合不同的形参类型)

    Mixing Different Parameter Types(混合不同的形参类型) Mixing Different Parameter Types(混合不同的形参类型) It’s possible, but rare, to use all four flavors of parameters in a single function. Whe...
  • 主页

    Julia 1.0 中文文档 简介 Julia 1.0 中文文档 欢迎来到 Julia 1.0 中文文档。 关于中文文档 Julia 语言相关的本地化工作是一个由社区驱动的开源项目JuliaZH.jl ,旨在方便 Julia 的中文用户。我们目前使用 Transifex 作为翻译平台。翻译工作正在进行,有任何疑问或建议请到社区论坛文档区 反馈...
  • Sequence Iterating Functions(序列迭代函数)

    Sequence Iterating Functions(序列迭代函数) Sequence Iterating Functions(序列迭代函数) While in theory all operations on sequences boil down to some combination of LENGTH , ELT , and SETF ...
  • 主页

    Julia 1.2 中文文档 简介 Julia 1.2 中文文档 欢迎来到 Julia 1.2 中文文档(PDF版本 )! 请先阅读 v1.0 正式发布博文 以获得对这门语言的总体概观。我们推荐刚刚开始学习 Julia 语言的朋友阅读中文社区提供的 Julia入门指引 ,也推荐你使用discourse 对遇到的问题进行提问。 关于中文文档 ...
  • 主页

    Julia 1.4 中文文档 简介 Julia 1.4 中文文档 欢迎来到 Julia 1.4 中文文档(PDF版本 )! 请先阅读 v1.0 正式发布博文 以获得对这门语言的总体概观。我们推荐刚刚开始学习 Julia 语言的朋友阅读中文社区提供的 Julia入门指引 ,也推荐你使用discourse 对遇到的问题进行提问。 关于中文文档 ...
  • Other Method Combinations

    Other Method Combinations Other Method Combinations In addition to the standard method combination, the language specifies nine other built-in method combinations known as the ...
  • 2.7 递归 (Recursion)

    2.7 递归 (Recursion) 2.7 递归 (Recursion) 上一节我们所定义的函数,调用了别的函数来帮它们做事。比如 sum-greater 调用了 + 和 > 。函数可以调用任何函数,包括自己。自己调用自己的函数是递归的。 Common Lisp 函数 member ,测试某个东西是否为列表的成员。下面是定义成递归函数的简化...