《let's build a simple xxx》 build your own lisp ★★ Crafting Interpreters (学生版)Implementing Functional Languages_student.pdf - 快捷方式 未成书:Building LISP Wr ...
分类:
其他好文 时间:
2019-01-25 01:11:25
阅读次数:
278
理由如下: 1. 强类型,写着放心 2. 函数式。 且不是pure functional, 不用像 Haskell 那样极端。。 3. Algebric Data Types 的模式匹配 实在太爽了 4. modules 很强大 5. 语法很简洁。 缺点 冷门,库好像很少。 文档更少 中文书籍:目前 ...
分类:
编程语言 时间:
2019-01-25 01:08:03
阅读次数:
224
在COMP30026 Models of Computation中接触了新的编程语言Haskell,一个之前听都没有听过的语言,在此记录关于Haskell的一些最基本概念。 1.Haskell是一个函数式编程语言(functional programming language),函数式编程语言最基本 ...
分类:
其他好文 时间:
2019-01-21 16:01:44
阅读次数:
175
函数式编程 函数是Python内建支持的一种封装,我们通过把大段代码拆成函数,通过一层一层的函数调用,就可以把复杂任务分解成简单的任务,这种分解可以称之为面向过程的程序设计。函数就是面向过程的程序设计的基本单元。 而函数式编程(请注意多了一个“式”字)——Functional Programming ...
分类:
编程语言 时间:
2019-01-20 11:44:17
阅读次数:
192
Functor composition is a powerful concept that arises when we have one Functor nested in another Functor. It becomes even more powerful when both of t ...
分类:
其他好文 时间:
2019-01-18 20:07:27
阅读次数:
99
Functional Requirements: Non Functional Requirements: 1.highly available. 2.with minimal latency. we assume we will have 500M new URL shortenings per ...
分类:
Web程序 时间:
2019-01-18 10:20:26
阅读次数:
442
响应式编程是一种面向数据流和变化传播的编程范式; 响应式编程和函数式编程的融合; 响应式编程为内核;函数式编程为工具; 流的概念先天适合函数式编程。 Some quotes from the article: Reactive programming is programming with asyn ...
分类:
其他好文 时间:
2019-01-15 19:34:57
阅读次数:
218
We sometimes just want to return a couple of elements next to one another from a React functional component, without adding a wrapper component which ...
分类:
其他好文 时间:
2019-01-13 19:13:18
阅读次数:
173
While sometimes outside input can have influence on how a given stateful transaction transitions, there are many times where the current state at the ...
分类:
其他好文 时间:
2019-01-11 21:20:34
阅读次数:
131
State is a lazy datatype and as such we can combine many simple transitions into one very complex one. This gives us a lot of control over how our sta ...
分类:
其他好文 时间:
2019-01-08 21:57:50
阅读次数:
141