书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 365 个相关结果.
  • Atom Proton

    788 2020-06-21 《Practicalli Clojure》
    Atom Proton Install Atom.io Standalone Install Alternative install via Package Manager Running Atom Danger::Leiningen in GitBash does not work with Atom Install Proton Exampl...
  • Java Interoperability

    678 2020-06-21 《Practicalli Clojure》
    Java Interoperability The syntax Getting the Java environment Java Interoperability Clojure provides very clear and simple syntax for Java interoperatility , using the fo...
  • Getting Started

    535 2020-06-21 《Practicalli Clojure》
    Install Clojure tools Using Clojure Tools rebel REPL Create projects Configure REPL Startup Clojure Aware Editors
  • Comments

    667 2020-06-21 《Practicalli Clojure》
    Comments comment function Comment forms with the comment reader macro comment nested forms Stacking comments Comments in threading macros Comments You can use ;; to comm...
  • 1173 2019-05-04 《Clojure学习笔记》
    宏 defmacro Quote Simple Quoting Syntax Quoting 宏 Macro 是函数式编程里面很重要的一个概念,在之前,我们已经使用了Clojure 里面的一些macro ,譬如when ,and 等,我们可以通过macroexpand 获知: user => ( macroexpand '(when ...
  • Atom ProtoREPL

    512 2020-06-21 《Practicalli Clojure》
    Atom and ProtoREPL user guide Start a Local Clojure REPL Connecting to a Remote REPL Evaluating Code Changing the REPL Namespace Keybindings and Events Atom and ProtoREPL ...
  • 单元测试

    单元测试 shadow-cljs boot-test JVM 单元测试 ClojureScript 的测试和 Clojure 语法类似, 通过 cljs.test 来提供.首先需要引用下面这些函数或者 Macros: ( ns my - project . tests (: require [ cljs . test : ...
  • 以不变应万变

    1382 2019-05-04 《Clojure学习笔记》
    以不变应万变 复习 在 Clojure 里,值是不可变的。 这里再介绍几个对集合进行操作的函数 使用 cons 函数把一些元素添加到集合的头部 使用 conj 函数来添加一些元素到集合中 对于 vector 来说是末尾,但是对 list 来说是头部: 使用 into 函数来把两个集合进行合并。 以不变应万变 一个抽象的过程...
  • Defing behaviour with Functions

    459 2020-06-21 《Practicalli Clojure》
    Defining behaviours with functions Defining behaviours with functions Clojure has functions, rather than methods for defining behaviour / “algorithms” Clojure design at its mo...
  • documentation

    559 2020-06-21 《Practicalli Clojure》
    clojure.spec adds documentation to function definitions clojure.spec adds documentation to function definitions Using doc to show the spec ( ns practicalli . clojure (: r...