munyo 0.8.0

A data language which aims to be the most efficient way to handwrite data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module is not intended for general use

pub(crate) mod state;
pub(crate) mod from_str_with_metabuilder;
pub(crate) mod munyo_parser;
pub(crate) mod parse_line_contents;
pub(crate) mod parse_content;
pub(crate) mod parse_main_line;
pub(crate) mod parse_line_continuation;
pub(crate) mod builder_tree;
pub(crate) mod processed;
pub(crate) mod make_escaped_string;
mod inner_lang;

pub use processed::Processed;