wootype 0.1.0

Type System as a Service - Rust-powered Go type checker for AI Agents
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 engine;
pub mod cache;
pub mod pattern;

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