vize_fresco 0.198.0

Fresco - Vue TUI framework (Terminal User Interface)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Text processing module for CJK support.
//!
//! Provides Unicode-aware text handling:
//! - Character width calculation (East Asian Width)
//! - Grapheme segmentation
//! - Text wrapping

mod segment;
mod width;
mod wrap;

pub use segment::{SegmentedText, TextSegment, TextSegmentIter, segment, segment_vec};
pub use width::TextWidth;
pub use wrap::{TextWrap, WrapMode};