/*
* SPDX-License-Identifier: MIT
* Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
*/
use crate::;
/// Alias trait for `Monad` providing more intuitive method names.
///
/// - `chain` → `bind`: Chains a computation, flattening nested containers.
/// - `flatten` → `join`: Flattens a nested container.
// Blanket implementation