[][src]Module taskforge::query

The query module provides types for interacting with and interpreting the Taskforge Query Language

You should generally only be using the AST, Expression, and Parser types from this module and only when writing a new compiler for a List implementation.

However, most types in this module are public and available for use.

For documentation about parsing and the rules it uses to validate expressions see: the Parser documentation

Re-exports

pub use self::ast::Expression;
pub use self::ast::AST;
pub use self::parser::Parser;

Modules

ast

Documentation about the Taskforge Query Language Abstract Syntax Tree (AST) and Expressions

parser

Contains the parser implementation for the Taskforge Query Language (TFQL)

token

Tokens and functions for the Taskforge Query Language