pub mod boolean;
#[cfg(feature = "polars")]
pub mod data_frame;
pub mod images;
pub mod json_like;
pub mod list;
pub mod module_name;
pub mod pointer;
pub mod primitive;
pub mod result;
pub mod texts;
use crate::{types::ValkyrieMetaType, ValkyrieType, ValkyrieValue};
use indexmap::IndexMap;
use shredder::Gc;
use std::{
collections::{hash_map::DefaultHasher, BTreeMap, BTreeSet},
fmt::Debug,
hash::{Hash, Hasher},
ops::Not,
sync::Arc,
};
pub enum TokenType {
Keyword,
Punctuation,
Operator,
Structure,
Class,
Enumerate,
Union,
Unite,
Variant,
Interface,
Trait,
Variable,
VariableMutable,
Parameter,
ParameterMutable,
ParameterSelf,
ParameterSelfMutable,
Constant,
}