/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

fsharpforfunandprofit.com
| | www.baturin.org
1.7 parsecs away

Travel
| | [AI summary] This blog post introduces the OCaml programming language, focusing on anonymous and named functions, closures, currying, partial application, and syntactic sugar for function definitions.
| | jrsinclair.com
3.6 parsecs away

Travel
| | In the last article, we saw how functional programming can be used with arrays. In this article we examine higher-order functionsfunctions for making functions.
| | hookrace.net
3.6 parsecs away

Travel
| |
| | abdulapopoola.com
21.1 parsecs away

Travel
| The biggest advantage of using tail calls is that they allow you to do extensive operations without exceeding the call stack. This makes it possible to do a lot of work in constant space without running into out of memory exceptions; this happens because the frame for the currently executing function is re-used by the...