//! Inline sentinel pointer for true-inline value storage.
//!
//! This module provides `INLINE_SENTINEL_PTR`, a sentinel pointer value used
//! to distinguish terminal inline values from empty slots in true-inline leaves.
use ptr as StdPtr;
// ============================================================================
// Sentinel Definition
// ============================================================================
/// Static byte used as the target for the inline sentinel pointer.
///
/// This is a real memory location (not a fake/punned pointer), ensuring
/// strict provenance compliance.
static INLINE_SENTINEL: u8 = 0;
/// Sentinel handler
;