//! Adapter utilities for the `virtualizer` crate.
//!
//! The `virtualizer` crate is UI-agnostic and focuses on the core math and state. This crate
//! provides small, framework-neutral helpers commonly needed by adapters:
//!
//! - Scroll anchoring (e.g. prepend in chat/timelines without visual jumps)
//! - Tween-based smooth scrolling helpers (optional; adapter-driven)
//!
//! This crate is intentionally framework-agnostic (no ratatui/egui bindings).
extern crate alloc;
extern crate std;
pub use ;
pub use Controller;
pub use VirtualizerKey;
pub use ;