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;
17#[doc(hidden)]
18pub mod macros;
19pub mod predicate;
20
21pub use bi_predicate::{
22 ArcBiPredicate,
23 BiPredicate,
24 BoxBiPredicate,
25 FnBiPredicateOps,
26 RcBiPredicate,
27};
28pub use predicate::{
29 ArcPredicate,
30 BoxPredicate,
31 FnPredicateOps,
32 Predicate,
33 RcPredicate,
34};