dashbitco / nimble_parsec

A simple and fast library for text-based parser combinators

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"Combinators are built during runtime"

Flying-Toast opened this issue · comments

From the docs: "Combinators are built during runtime and compiled into multiple clauses with binary matching."

Shouldn't this actually say "Combinators are built during compile time"?

It depends. Compile-time in Elixir and runtime are the same thing, except one will write bytecode to disk and the other will no. I think it is better to say "Combinators are built programatically". :) I will update it, thanks!