Skip to main content

qubit_function/predicates/
mod.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 *    SPDX-License-Identifier: Apache-2.0
6 *
7 *    Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! # Predicates Module
11//!
12//! This module provides predicate-related functional programming abstractions
13//! for testing values and returning boolean results.
14//!
15
16pub mod bi_predicate;
17pub(crate) mod macros;
18pub mod predicate;
19
20pub use bi_predicate::{
21    ArcBiPredicate,
22    BiPredicate,
23    BoxBiPredicate,
24    FnBiPredicateOps,
25    RcBiPredicate,
26};
27pub use predicate::{
28    ArcPredicate,
29    BoxPredicate,
30    FnPredicateOps,
31    Predicate,
32    RcPredicate,
33};