// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
//! Row-loop execution for owned outputs and output sinks.
//!
//! [`owned`] stores one independent value per row and reduces compact failure evidence. [`sink`]
//! drives output builders whose row handles may share batch state.
pub use execute_owned;
pub use execute_owned_infallible;
pub use execute_owned_infallible_valid_rows;
pub use execute_owned_valid_rows;
pub use execute_sink;
pub use execute_sink_valid_rows;