Skip to main content

BoxConditionalBiConsumerOnce

Struct BoxConditionalBiConsumerOnce 

Source
pub struct BoxConditionalBiConsumerOnce<T, U> { /* private fields */ }
Expand description

BoxConditionalBiConsumerOnce struct

A conditional one-time bi-consumer that only executes when a predicate is satisfied. Uses BoxBiConsumerOnce and BoxBiPredicate for single ownership semantics.

This type is typically created by calling BoxBiConsumerOnce::when() and is designed to work with the or_else() method to create if-then-else logic.

§Features

  • Single Ownership: Not cloneable, consumes self on use
  • Conditional Execution: Only consumes when predicate returns true
  • Chainable: Can add or_else branch to create if-then-else logic
  • Implements BiConsumerOnce: Can be used anywhere a BiConsumerOnce is expected

§Examples

§Basic Conditional Execution

use qubit_function::{BiConsumerOnce, BoxBiConsumerOnce};
use std::sync::{Arc, Mutex};

let log = Arc::new(Mutex::new(Vec::new()));
let l = log.clone();
let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
    l.lock().unwrap().push(*x + *y);
});
let conditional = consumer.when(|x: &i32, y: &i32| *x > 0 && *y > 0);

conditional.accept(&5, &3);
assert_eq!(*log.lock().unwrap(), vec![8]); // Executed

§With or_else Branch

use qubit_function::{BiConsumerOnce, BoxBiConsumerOnce};
use std::sync::{Arc, Mutex};

let log = Arc::new(Mutex::new(Vec::new()));
let l1 = log.clone();
let l2 = log.clone();
let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
    l1.lock().unwrap().push(*x + *y);
}).when(|x: &i32, y: &i32| *x > 0 && *y > 0)
  .or_else(move |x: &i32, y: &i32| {
    l2.lock().unwrap().push(*x * *y);
});

consumer.accept(&5, &3);
assert_eq!(*log.lock().unwrap(), vec![8]); // when branch executed

Implementations§

Source§

impl<T, U> BoxConditionalBiConsumerOnce<T, U>

Source

pub fn and_then<C>(self, next: C) -> BoxBiConsumerOnce<T, U>
where T: 'static, U: 'static, C: BiConsumerOnce<T, U> + 'static,

Chains another bi-consumer in sequence

Combines the current conditional bi-consumer with another bi-consumer into a new bi-consumer that implements the following semantics:

When the returned bi-consumer is called with two arguments:

  1. First, it checks the predicate of this conditional bi-consumer
  2. If the predicate is satisfied, it executes the internal bi-consumer of this conditional bi-consumer
  3. Then, regardless of whether the predicate was satisfied, it unconditionally executes the next bi-consumer

In other words, this creates a bi-consumer that conditionally executes the first action (based on the predicate), and then always executes the second action.

§Parameters
  • next - The next bi-consumer to execute (always executed)
§Returns

Returns a new combined bi-consumer

§Examples
use std::sync::atomic::{AtomicI32, Ordering};
use qubit_function::BoxBiConsumer;
use qubit_function::BiConsumer;
use std::sync::Arc;

let result = Arc::new(AtomicI32::new(0));
let result1 = result.clone();
let result2 = result.clone();

let consumer1 = BoxBiConsumer::new(move |x: &i32, y: &i32| {
    result1.fetch_add(x + y, Ordering::SeqCst);
});

let consumer2 = BoxBiConsumer::new(move |x: &i32, y: &i32| {
    result2.fetch_add(2 * (x + y), Ordering::SeqCst);
});

let conditional = consumer1.when(|x: &i32, y: &i32| *x > 0 && *y > 0);
let chained = conditional.and_then(consumer2);

chained.accept(&5, &3);  // result = (5+3) + 2*(5+3) = 24
let result3 = result.clone();
result3.store(0, Ordering::SeqCst);  // reset
chained.accept(&-5, &3); // result = 0 + 2*(-5+3) = -4 (not -8!)
Source

pub fn or_else<C>(self, else_consumer: C) -> BoxBiConsumerOnce<T, U>
where T: 'static, U: 'static, C: BiConsumerOnce<T, U> + 'static,

Adds an else branch

Executes the original bi-consumer when the condition is satisfied, otherwise executes else_consumer.

§Parameters
  • else_consumer - The bi-consumer for the else branch
§Returns

Returns a new bi-consumer with if-then-else logic

Examples found in repository?
examples/consumers/bi_consumer_once_demo.rs (lines 86-88)
25fn main() {
26    println!("=== BiConsumerOnce Demo ===\n");
27
28    // 1. Basic usage
29    println!("1. Basic usage:");
30    let log = Arc::new(Mutex::new(Vec::new()));
31    let l = log.clone();
32    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
33        l.lock().unwrap().push(*x + *y);
34        println!("  Sum: {}", x + y);
35    });
36    consumer.accept(&10, &5);
37    println!("  Log: {:?}\n", *log.lock().unwrap());
38
39    // 2. Method chaining
40    println!("2. Method chaining:");
41    let log = Arc::new(Mutex::new(Vec::new()));
42    let l1 = log.clone();
43    let l2 = log.clone();
44    let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
45        l1.lock().unwrap().push(*x + *y);
46        println!("  First: sum={}", x + y);
47    })
48    .and_then(move |x: &i32, y: &i32| {
49        l2.lock().unwrap().push(*x * *y);
50        println!("  Second: product={}", x * y);
51    });
52    chained.accept(&5, &3);
53    println!("  Log: {:?}\n", *log.lock().unwrap());
54
55    // 3. Conditional execution - true case
56    println!("3. Conditional execution - true case:");
57    let log = Arc::new(Mutex::new(Vec::new()));
58    let l = log.clone();
59    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
60        l.lock().unwrap().push(*x + *y);
61    })
62    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
63    conditional.accept(&5, &3);
64    println!("  Positive values: {:?}\n", *log.lock().unwrap());
65
66    // 4. Conditional execution - false case
67    println!("4. Conditional execution - false case:");
68    let log = Arc::new(Mutex::new(Vec::new()));
69    let l = log.clone();
70    let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
71        l.lock().unwrap().push(*x + *y);
72    })
73    .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
74    conditional.accept(&-5, &3);
75    println!("  Negative value (unchanged): {:?}\n", *log.lock().unwrap());
76
77    // 5. Conditional branching
78    println!("5. Conditional branching:");
79    let log = Arc::new(Mutex::new(Vec::new()));
80    let l1 = log.clone();
81    let l2 = log.clone();
82    let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
83        l1.lock().unwrap().push(*x);
84    })
85    .when(|x: &i32, y: &i32| *x > *y)
86    .or_else(move |_x: &i32, y: &i32| {
87        l2.lock().unwrap().push(*y);
88    });
89    branch.accept(&15, &10);
90    println!("  When x > y: {:?}\n", *log.lock().unwrap());
91
92    // 6. Working with closures directly
93    println!("6. Working with closures directly:");
94    let log = Arc::new(Mutex::new(Vec::new()));
95    let l = log.clone();
96    let closure = move |x: &i32, y: &i32| {
97        l.lock().unwrap().push(*x + *y);
98        println!("  Processed: {}", x + y);
99    };
100    closure.accept(&10, &20);
101    println!("  Log: {:?}\n", *log.lock().unwrap());
102
103    // 7. Moving captured values
104    println!("7. Moving captured values:");
105    let data = vec![1, 2, 3, 4, 5];
106    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
107        println!("  x={}, y={}", x, y);
108        println!("  Captured data: {:?}", data);
109        println!("  Data sum: {}", data.iter().sum::<i32>());
110    });
111    consumer.accept(&5, &3);
112    // data is no longer available here
113    println!();
114
115    // 8. Initialization callback
116    println!("8. Initialization callback:");
117    let log = Arc::new(Mutex::new(Vec::new()));
118    let l = log.clone();
119    let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
120        println!("  Initializing with dimensions: {}x{}", width, height);
121        l.lock().unwrap().push(*width * *height);
122    });
123    init_callback.accept(&800, &600);
124    println!("  Areas: {:?}\n", *log.lock().unwrap());
125
126    // 9. Cleanup callback
127    println!("9. Cleanup callback:");
128    let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
129        println!("  Cleanup: processed {} out of {} items", count, total);
130        println!(
131            "  Success rate: {:.1}%",
132            (*count as f64 / *total as f64) * 100.0
133        );
134    });
135    cleanup.accept(&85, &100);
136    println!();
137
138    // 10. Name support
139    println!("10. Name support:");
140    let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
141    println!("  Initial name: {:?}", named_consumer.name());
142
143    named_consumer.set_name("init_callback");
144    println!("  After setting name: {:?}", named_consumer.name());
145    println!("  Display: {}", named_consumer);
146    named_consumer.accept(&1, &2);
147    println!();
148
149    // 11. Print helpers
150    println!("11. Print helpers:");
151    let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
152    print.accept(&42, &10);
153
154    let print_with =
155        BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
156    print_with.accept(&800, &600);
157    println!();
158
159    // 12. Converting to function
160    println!("12. Converting to function:");
161    let log = Arc::new(Mutex::new(Vec::new()));
162    let l = log.clone();
163    let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
164        l.lock().unwrap().push(*x + *y);
165    });
166    let func = consumer.into_fn();
167    func(&7, &3);
168    println!("  Log: {:?}\n", *log.lock().unwrap());
169
170    println!("=== Demo Complete ===");
171}

Trait Implementations§

Source§

impl<T, U> BiConsumerOnce<T, U> for BoxConditionalBiConsumerOnce<T, U>

Source§

fn accept(self, first: &T, second: &U)

Performs the one-time consumption operation Read more
Source§

fn into_fn(self) -> impl FnOnce(&T, &U)

Converts to a closure Read more
Source§

fn into_box(self) -> BoxBiConsumerOnce<T, U>
where Self: Sized + 'static,

Converts to BoxBiConsumerOnce Read more
Source§

impl<T, U> Debug for BoxConditionalBiConsumerOnce<T, U>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, U> Display for BoxConditionalBiConsumerOnce<T, U>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.