书栈网 · BookStack 本次搜索耗时 0.046 秒,为您找到 651 个相关结果.
  • 1. while语句

    1. while语句 习题 1. while语句 在第 3 节 “递归” 中,我们介绍了用递归求n!的方法,其实每次递归调用都在重复做同样一件事,就是把n乘到(n-1)!上然后把结果返回。虽说是重复,但每次做都稍微有一点区别(n 的值不一样),这种每次都有一点区别的重复工作称为迭代(Iteration)。我们使用计算机的主要目的之一就是让它做重复迭...
  • debug

    debug 范畴学 总结 练习 debug 组合的一个常见错误是,在没有局部调用之前,就组合类似 map 这样接受两个参数的函数。 // 错误做法:我们传给了 `angry` 一个数组,根本不知道最后传给 `map` 的是什么东西。 var latin = compose ( map , angry , reverse ); ...
  • Blog: i18n, authentication, authorization, and database

    Blog: i18n, authentication, authorization, and database Blog: i18n, authentication, authorization, and database This is a simple blog app. It allows an admin to add blog posts v...
  • Blog: i18n, authentication, authorization, and database

    Blog: i18n, authentication, authorization, and database Blog: i18n, authentication, authorization, and database This is a simple blog app . It allows an admin to add blog ...
  • 大话题小函数(1)

    大话题小函数(1) lambda map 大话题小函数(1) 开篇就要提到一个大的话题:编程范型。什么是编程范型?引用维基百科中的解释 : 编程范型或编程范式(英语:Programming paradigm),(范即模范之意,范式即模式、方法),是一类典型的编程风格,是指从事软件工程的一类典型的风格(可以对照方法学)。如:函数式编程、程序编程...
  • We don’t need no stinking UML diagrams

    categories: [“DDD”] Regular expressions Student enrollment Order and customer Order and customer, version 2 Hotel Booking Library Software licensing Summary layout: post...
  • A functional approach to authorization

    categories: [] Part 1: A configuration example Security as good design Introducing capability-based security Authority vs. permission Modelling capabilities as functions The ...
  • Thunk 函数

    Thunk 函数 参数的求值策略 Thunk 函数的含义 JavaScript 语言的 Thunk 函数 Thunkify 模块 Generator 函数的流程管理 Thunk 函数的自动流程管理 Thunk 函数 Thunk 函数是自动执行 Generator 函数的一种方法。 参数的求值策略 Thunk 函数早在上个世纪 60 ...
  • Currying

    categories: [Currying] Signatures of curried functions Functions with more than two parameters Issues with multiple parameters Too many parameters layout: posttitle: “Curryi...
  • 应用 applicative functor

    应用 applicative functor 瓶中之船 协调与激励 lift 操作符 免费开瓶器 定律 同一律(identity) 同态(homomorphism) 互换(interchange) 组合(composition) 总结 练习 应用 applicative functor 考虑到其函数式的出身,applicati...