data-query-lexical 0.1.3

a lexical support library for the Data Query
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::collections::{HashSet, LinkedList};
use std::iter::Map;

pub struct Lexical {
    r#type: LexicalType,
}

enum LexicalType {}

trait LexicalEntry {
    fn chars() -> HashSet<char>;
    fn function<O: Fn() -> Result<LinkedList<Lexical>, String>>(c: char) -> O;
}