repr 0.8.0

The regular-expression-as-linear-logic interpretation and its implementation
Documentation
1
2
3
4
5
6
7
# Usage

```rust
use repr::{Repr, constants::DIGIT};
let re = DIGIT.rep(4) * '-' * DIGIT.rep(2) * '-' * DIGIT.rep(2);
assert!(re.is_match("2014-01-01"));
```