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.
 *
 ******************************************************************************/

//! # Predicate Constants
//!
//! Defines constants used by Predicate and BiPredicate.
//!
//! # Author
//!
//! Huxing Hu

/// Name constant used by the `always_true` method
///
/// # Author
///
/// Haixing Hu
pub const ALWAYS_TRUE_NAME: &str = "always_true";

/// Name constant used by the `always_false` method
///
/// # Author
///
/// Haixing Hu
pub const ALWAYS_FALSE_NAME: &str = "always_false";