sqry-core 6.0.22

Core library for sqry - semantic code search engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! String interning types for the unified graph architecture.
//!
//! This module provides:
//! - [`StringId`]: Opaque handle for interned strings
//!
//! The `StringInterner` implementation is in the storage module (Step 6).

pub mod id;

pub use id::StringId;