Expand description
Auto-generated module
🤖 Generated with SplitRS
Structs§
- Bloom
Filter Approx - A very simple approximate membership test using bit-hashing.
- Cache
Manager - Global cache manager for all kernel caches
- Cache
Statistics - Statistics for all caches.
- Config
Node - A hierarchical configuration tree.
- DefEq
Cache - Symmetry-aware cache for definitional equality checks
- Flat
Substitution - A flat list of substitution pairs
(from, to). - Focus
Stack - A mutable reference stack for tracking the current “focus” in a tree traversal.
- Infer
Cache - Cache for type inference results
- Label
Set - A label set for a graph node.
- LruCache
- Generic LRU Cache with HashMap + Vec-based intrusive list
- Multi
Level Cache - A two-level cache hierarchy.
- NonEmpty
Vec - A non-empty list (at least one element guaranteed).
- PathBuf
- A reusable scratch buffer for path computations.
- RawFn
Ptr - A type-erased function pointer with arity tracking.
- Rewrite
Rule - Represents a rewrite rule
lhs → rhs. - Rewrite
Rule Set - A set of rewrite rules.
- Simple
Dag - A simple directed acyclic graph.
- Sliding
Sum - A fixed-size sliding window that computes a running sum.
- Small
Map - A simple key-value store backed by a sorted Vec for small maps.
- Sparse
Vec - A sparse vector: stores only non-default elements.
- Stack
Calc - A simple stack-based calculator for arithmetic expressions.
- Stat
Summary - A generic counter that tracks min/max/sum for statistical summaries.
- Stopwatch
- A counter that can measure elapsed time between snapshots.
- String
Pool - A pool of reusable string buffers.
- Token
Bucket - A token bucket rate limiter.
- Transform
Stat - A pair of
StatSummaryvalues tracking before/after a transformation. - Transitive
Closure - A dependency closure builder (transitive closure via BFS).
- TtlCache
- A simple TTL-based cache using a step counter as a clock.
- Versioned
Record - A versioned record that stores a history of values.
- Whnf
Cache - Cache for weak head normal form (WHNF) reduction results
- Window
Iterator - A window iterator that yields overlapping windows of size
n. - Write
Once - A write-once cell.
Enums§
- Decision
Node - A simple decision tree node for rule dispatching.
- Either2
- A tagged union for representing a simple two-case discriminated union.
- Simplified
Expr - Simplified Expr representation for hashing (mirrors actual Expr).