Explore >> Select a destination


You are here

byorgey.wordpress.com
| | blog.dhsdevelopments.com
3.1 parsecs away

Travel
| | You may have heard about how array programming languages such as APL, J or K. If you have, you've probably heard that code written in the...
| | jobjo.github.io
3.0 parsecs away

Travel
| | Memoization is a strategy for preventing values to be computed multipletimes. The sledgehammer approach in OCaml is a function with the signature:
| | qsantos.fr
2.8 parsecs away

Travel
| |
| | blog.drewolson.org
31.8 parsecs away

Travel
| Delving into the world of pure functional programming caused me to learn about parser combinators. Upon returning to Elixir, I was excited to see that nimble_parsec is a great example of a parser combinator library for the Elixir ecosystem. Parser combinators can be notoriously confusing when first learned. In this post I'll provide a gentle introduction to parser combinators via nimble_parsec. What is a Parser Combinator? Have you ever found yourself writing a regular expression to parse input? I know I have. You finally have the syntax correct and then new requirements get added. Suddenly you need to support optional tokens, lists of values and other complicated types of input. When regular expressions start to break down because of complexity, it's time t...