Skip to content

Commit 3806fac

Browse files
committed
write a proper readme
1 parent f294721 commit 3806fac

File tree

2 files changed

+48
-6
lines changed

2 files changed

+48
-6
lines changed

README.md

+42-5
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,63 @@
1-
# pears
1+
# Pears - A parser combinator library for Gleam
22

33
[![Package Version](https://img.shields.io/hexpm/v/pears)](https://hex.pm/packages/pears)
44
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/pears/)
55

6+
🚧️ **This library is in early development. Expect breaking changes.** 🚧
7+
8+
## Installation
9+
610
```sh
711
gleam add pears
812
```
913

14+
## Usage
15+
1016
```gleam
11-
import pears
17+
import pears.{type Parser, Parsed}
18+
import pears/chars.{type Char, number}
19+
import pears/combinators.{alt, between, just, lazy, map, sep_by0}
20+
21+
pub type Tree(a) {
22+
Leaf(a)
23+
Node(List(Tree(a)))
24+
}
25+
26+
fn tree_parser(p: Parser(Char, a)) -> Parser(Char, Tree(a)) {
27+
let tree = lazy(fn() { tree_parser(p) })
28+
let leaf = map(p, Leaf)
29+
let node =
30+
tree
31+
|> sep_by0(just(","))
32+
|> between(just("["), just("]"))
33+
|> map(Node)
34+
alt(leaf, node)
35+
}
1236
1337
pub fn main() {
14-
// TODO: An example of the project in use
38+
let parse_result =
39+
"[1,[2,3],4]"
40+
|> chars.input()
41+
|> tree_parser(number())
42+
43+
let assert Ok(Parsed([], Node([Leaf(1), Node([Leaf(2), Leaf(3)]), Leaf(4)]))) =
44+
parse_result
1545
}
1646
```
1747

18-
Further documentation can be found at <https://hexdocs.pm/pears>.
48+
Further documentation can be found at [https://hexdocs.pm/pears](https://hexdocs.pm/pears/pears.html).
49+
50+
See the [test](./test) directory for more examples.
51+
52+
## What's missing?
53+
54+
- Proper error handling
55+
- Test helpers
56+
- ...
1957

2058
## Development
2159

2260
```sh
23-
gleam run # Run the project
2461
gleam test # Run the tests
2562
gleam shell # Run an Erlang shell
2663
```

src/pears/chars.gleam

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ import pears.{type Parser, ParseError, ok}
55
import pears/input.{type Input}
66
import pears/combinators.{just, many0, many1, map, one_of, satisfying}
77

8-
/// A grapheme cluster is a user-perceived character
8+
/// Build an `Input(Char)` from a string.
9+
pub fn input(s: String) -> Input(Char) {
10+
string.to_graphemes(s)
11+
}
12+
13+
/// A grapheme is a user-perceived character.
914
pub type Char =
1015
String
1116

0 commit comments

Comments
 (0)