qubit-function 0.8.3

Common functional programming type aliases for Rust, providing Java-style functional interfaces
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026.
 *    Haixing Hu, Qubit Co. Ltd.
 *
 *    All rights reserved.
 *
 ******************************************************************************/
//! # Predicates Module
//!
//! This module provides predicate-related functional programming abstractions
//! for testing values and returning boolean results.
//!
//! # Author
//!
//! Haixing Hu

pub mod bi_predicate;
pub mod macros;
pub mod predicate;

pub use bi_predicate::{
    ArcBiPredicate,
    BiPredicate,
    BoxBiPredicate,
    FnBiPredicateOps,
    RcBiPredicate,
};
pub use predicate::{
    ArcPredicate,
    BoxPredicate,
    FnPredicateOps,
    Predicate,
    RcPredicate,
};