Module literals

Module literals 

Source
Expand description

Literal parsing submodules for AIMX.

Provides parsers for literal value types used by the AIMX expression grammar. These functions are primarily used by crate::literal::parse_literal and are re-exported for embedders that need to parse specific literal kinds directly.

Literal kinds:

Re-exports§

pub use date::parse_date;
pub use literal::Literal;
pub use literal::parse_bool;
pub use literal::parse_literal;
pub use literal::parse_task;
pub use number::parse_number;
pub use number::parse_unsigned;
pub use text::parse_block;
pub use text::parse_tag;
pub use text::parse_text;

Modules§

date
Date literal parser for AIMX expressions.
literal
Literal value parsing and conversion for AIMX expressions.
number
Numeric literal parsing for AIMX expressions.
text
Text literal and tagged content parsing for AIMX.