wootype 0.2.0

Blazing-fast Go type system service —— Vibe Coding toolchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Type query engine - Zero-latency type queries
//!
//! Provides:
//! - Sub-millisecond type resolution
//! - Interface satisfaction queries
//! - Type similarity search
//! - Cross-reference analysis

pub mod cache;
pub mod engine;
pub mod pattern;

pub use cache::QueryCache;
pub use engine::QueryEngine;
pub use pattern::{QueryFilter, TypePattern};