flowlog-build 0.2.2

Build-time FlowLog compiler for library mode.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Primitive types for the FlowLog Datalog programs.
//!
//! This module defines the core types used in the parser layer:
//! - [`DataType`]: relation attribute types (`int32`, `int64`, `string`)
//! - [`ConstType`]: literal constants (numbers, text)
//!
//! These types form the building blocks of FlowLog Datalog programs and appear
//! in atoms, expressions, and relation schemas.
//!
mod const_type;
mod data_type;

pub use const_type::ConstType;
pub use data_type::DataType;