/*******************************************************************************
*
* Copyright (c) 2025 - 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
//! # Predicate Macros Module
//!
//! Provides declarative macros to simplify Predicate implementations and
//! reduce code duplication.
//!
pub
// Export all macros for use within the crate
pub use impl_box_predicate_methods;
pub use impl_predicate_clone;
pub use impl_predicate_common_methods;
pub use impl_predicate_debug_display;
pub use impl_shared_predicate_methods;