// SPDX-License-Identifier: Apache-2.0
//! Per-document numeric values, used for norms and numeric doc values.
use io;
/// A per-document numeric value.
///
/// Provides lazy access to norm (or doc value) data. Callers position the
/// iterator with [`advance_exact`](Self::advance_exact), then read the value
/// with [`long_value`](Self::long_value).