rsedn 0.2.0

A Rust library for reading and writing EDN (Extensible Data Notation) data.
Documentation
1
2
3
4
5
6
7
8
//! This is the lexer module. Source code is read as a `Chars` iterator and and it is tokenized into `Token`.

pub mod lexeme;
pub mod source;
pub mod token;

const DELIMITERS: &str = "()[]{}";
const WHITESPACE: &str = " \t\n\r,";