prism3_function/predicates/macros/
mod.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025.
4 *    3-Prism Co. Ltd.
5 *
6 *    All rights reserved.
7 *
8 ******************************************************************************/
9
10//! # Predicate Macros Module
11//!
12//! Provides declarative macros to simplify Predicate implementations and
13//! reduce code duplication.
14//!
15//! # Author
16//!
17//! Haixing Hu
18
19mod box_predicate_methods;
20pub(crate) mod constants;
21mod predicate_clone;
22mod predicate_common_methods;
23mod predicate_debug_display;
24mod shared_predicate_methods;
25
26// Export all macros for use within the crate
27pub(crate) use box_predicate_methods::impl_box_predicate_methods;
28pub(crate) use predicate_clone::impl_predicate_clone;
29pub(crate) use predicate_common_methods::impl_predicate_common_methods;
30pub(crate) use predicate_debug_display::impl_predicate_debug_display;
31pub(crate) use shared_predicate_methods::impl_shared_predicate_methods;