mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
14 lines
No EOL
248 B
Elixir
14 lines
No EOL
248 B
Elixir
defmodule Search.BoolParser do
|
|
import NimbleParsec
|
|
|
|
bool =
|
|
choice([
|
|
string("true"),
|
|
string("false")
|
|
])
|
|
|> unwrap_and_tag(:bool)
|
|
|> eos()
|
|
|> label("a boolean, like `true' or `false'")
|
|
|
|
defparsec :parse, bool
|
|
end |