// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
//! Utilities for implementing `Debug` via a closure.
//!
//! This provides a stable alternative to the `debug_closures` feature: <https://github.com/rust-lang/rust/issues/117729>.
use fmt;
/// A wrapper that implements `Debug` via a closure.
where
F: Fn ;