//! Override (overlay) table backend for the SIM constellation.
//!
//! Provides an [`OverrideTable`] that layers one or more tables over a base
//! table, resolving lookups front-to-back so upper layers shadow lower ones.
//! It satisfies the kernel table contract and is registered as a loadable
//! library through [`install_override_table_lib`].
pub use construct_override_table;
pub use install_override_table_lib;
pub use OverrideTable;