书栈网 · BookStack 本次搜索耗时 0.015 秒,为您找到 930 个相关结果.
  • reduce函数

    reduce函数 openCypher兼容性 语法 示例 reduce函数 reduce() 将表达式逐个应用于列表中的元素,然后和累加器中的当前结果累加,最后返回完整结果。该函数将遍历给定列表中的每个元素e ,在e 上运行表达式并和累加器的当前结果累加,将新的结果存储在累加器中。这个函数类似于函数式语言(如Lisp和Scala)中的fold或r...
  • 10.6 通用化引用 (Generalized Reference)

    10.6 通用化引用 (Generalized Reference) 10.6 通用化引用 (Generalized Reference) 由于一个宏调用可以直接在它出现的地方展开成代码,任何展开为 setf 表达式的宏调用都可以作为 setf 表达式的第一个参数。 举例来说,如果我们定义一个 car 的同义词, ( defmacro cah...
  • Designing a Domain-Specific Language

    Designing a Domain-Specific Language Designing a Domain-Specific Language Designing an embedded language requires two steps: first, design the language that’ll allow you to exp...
  • 7 函数式编程

    函数式编程 函数式编程 函数是Python内建支持的一种封装,我们通过把大段代码拆成函数,通过一层一层的函数调用,就可以把复杂任务分解成简单的任务,这种分解可以称之为面向过程的程序设计。函数就是面向过程的程序设计的基本单元。 而函数式编程(请注意多了一个“式”字)——Functional Programming,虽然也可以归结到面向过程的程序设计,...
  • Special Operators(特别操作符)

    Special Operators(特别操作符) Special Operators(特别操作符) That said, not all operations can be defined as functions. Because all the arguments to a function are evaluated before the fu...
  • 1.6. Maintenance automation

    1.6. Maintenance automation 1.6.1. devscripts 1.6.2. reportbug 1.6.3. autotools-dev 1.6.4. dpkg-repack 1.6.5. alien 1.6.6. dpkg-dev-el 1.6.7. dpkg-depcheck 1.6. M...
  • Making the Dream a Reality

    Making the Dream a Reality Making the Dream a Reality Okay, enough fantasizing about good-looking code; now you need to get to work writing define-binary-class --writing the co...
  • Domain-Specific Languages

    Domain-Specific Languages Domain-Specific Languages Whenever you listen to a discussion by experts in any domain, be it chess players, kindergarten teachers, or insurance agent...
  • Reading Expressions

    365 2020-12-10 《Build your own Lisp》
    Reading Expressions Reading Expressions First we are going to read in the program and construct an lval* that represents it all. Then we are going to evaluate this lval* to ...
  • 简介

    3617 2018-03-11 《SICP 的魔法》
    SICP 的魔法 How to get? Chapters Feedback License SICP 的魔法 (整理自我自己的博客 ,担心有些同学看github page不方便,单独开一个proj) 计算机科学的内容包罗万象,其中的经典的课程也是不胜枚举。但是在这其中SICP(Structure and Interpretation o...