pub struct BoxBiConsumerOnce<T, U> { /* private fields */ }Expand description
BoxBiConsumerOnce struct
A one-time bi-consumer implementation based on
Box<dyn FnOnce(&T, &U)> for single ownership scenarios. This is the
simplest one-time bi-consumer type for truly one-time use.
§Features
- Single Ownership: Not cloneable, ownership moves on use
- Zero Overhead: No reference counting or locking
- One-Time Use: Consumes self on first call
- Builder Pattern: Method chaining consumes
selfnaturally
§Use Cases
Choose BoxBiConsumerOnce when:
- The bi-consumer is truly used only once
- Building pipelines where ownership naturally flows
- The consumer captures values that should be consumed
- Performance is critical and sharing overhead is unacceptable
§Performance
BoxBiConsumerOnce has the best performance:
- No reference counting overhead
- No lock acquisition or runtime borrow checking
- Direct function call through vtable
- Minimal memory footprint (single pointer)
§Examples
use qubit_function::{BiConsumerOnce, BoxBiConsumerOnce};
let consumer = BoxBiConsumerOnce::new(|x: &i32, y: &i32| {
println!("Sum: {}", x + y);
});
consumer.accept(&5, &3);§Author
Haixing Hu
Implementations§
Source§impl<T, U> BoxBiConsumerOnce<T, U>
impl<T, U> BoxBiConsumerOnce<T, U>
Sourcepub fn new<F>(f: F) -> Self
pub fn new<F>(f: F) -> Self
Creates a new bi-consumer.
Wraps the provided closure in the appropriate smart pointer type for this bi-consumer implementation.
Examples found in repository?
24fn main() {
25 println!("=== BiConsumerOnce Demo ===\n");
26
27 // 1. Basic usage
28 println!("1. Basic usage:");
29 let log = Arc::new(Mutex::new(Vec::new()));
30 let l = log.clone();
31 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
32 l.lock().unwrap().push(*x + *y);
33 println!(" Sum: {}", x + y);
34 });
35 consumer.accept(&10, &5);
36 println!(" Log: {:?}\n", *log.lock().unwrap());
37
38 // 2. Method chaining
39 println!("2. Method chaining:");
40 let log = Arc::new(Mutex::new(Vec::new()));
41 let l1 = log.clone();
42 let l2 = log.clone();
43 let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
44 l1.lock().unwrap().push(*x + *y);
45 println!(" First: sum={}", x + y);
46 })
47 .and_then(move |x: &i32, y: &i32| {
48 l2.lock().unwrap().push(*x * *y);
49 println!(" Second: product={}", x * y);
50 });
51 chained.accept(&5, &3);
52 println!(" Log: {:?}\n", *log.lock().unwrap());
53
54 // 3. Conditional execution - true case
55 println!("3. Conditional execution - true case:");
56 let log = Arc::new(Mutex::new(Vec::new()));
57 let l = log.clone();
58 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
59 l.lock().unwrap().push(*x + *y);
60 })
61 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
62 conditional.accept(&5, &3);
63 println!(" Positive values: {:?}\n", *log.lock().unwrap());
64
65 // 4. Conditional execution - false case
66 println!("4. Conditional execution - false case:");
67 let log = Arc::new(Mutex::new(Vec::new()));
68 let l = log.clone();
69 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
70 l.lock().unwrap().push(*x + *y);
71 })
72 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
73 conditional.accept(&-5, &3);
74 println!(" Negative value (unchanged): {:?}\n", *log.lock().unwrap());
75
76 // 5. Conditional branching
77 println!("5. Conditional branching:");
78 let log = Arc::new(Mutex::new(Vec::new()));
79 let l1 = log.clone();
80 let l2 = log.clone();
81 let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
82 l1.lock().unwrap().push(*x);
83 })
84 .when(|x: &i32, y: &i32| *x > *y)
85 .or_else(move |_x: &i32, y: &i32| {
86 l2.lock().unwrap().push(*y);
87 });
88 branch.accept(&15, &10);
89 println!(" When x > y: {:?}\n", *log.lock().unwrap());
90
91 // 6. Working with closures directly
92 println!("6. Working with closures directly:");
93 let log = Arc::new(Mutex::new(Vec::new()));
94 let l = log.clone();
95 let closure = move |x: &i32, y: &i32| {
96 l.lock().unwrap().push(*x + *y);
97 println!(" Processed: {}", x + y);
98 };
99 closure.accept(&10, &20);
100 println!(" Log: {:?}\n", *log.lock().unwrap());
101
102 // 7. Moving captured values
103 println!("7. Moving captured values:");
104 let data = vec![1, 2, 3, 4, 5];
105 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
106 println!(" x={}, y={}", x, y);
107 println!(" Captured data: {:?}", data);
108 println!(" Data sum: {}", data.iter().sum::<i32>());
109 });
110 consumer.accept(&5, &3);
111 // data is no longer available here
112 println!();
113
114 // 8. Initialization callback
115 println!("8. Initialization callback:");
116 let log = Arc::new(Mutex::new(Vec::new()));
117 let l = log.clone();
118 let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
119 println!(" Initializing with dimensions: {}x{}", width, height);
120 l.lock().unwrap().push(*width * *height);
121 });
122 init_callback.accept(&800, &600);
123 println!(" Areas: {:?}\n", *log.lock().unwrap());
124
125 // 9. Cleanup callback
126 println!("9. Cleanup callback:");
127 let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
128 println!(" Cleanup: processed {} out of {} items", count, total);
129 println!(
130 " Success rate: {:.1}%",
131 (*count as f64 / *total as f64) * 100.0
132 );
133 });
134 cleanup.accept(&85, &100);
135 println!();
136
137 // 10. Name support
138 println!("10. Name support:");
139 let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
140 println!(" Initial name: {:?}", named_consumer.name());
141
142 named_consumer.set_name("init_callback");
143 println!(" After setting name: {:?}", named_consumer.name());
144 println!(" Display: {}", named_consumer);
145 named_consumer.accept(&1, &2);
146 println!();
147
148 // 11. Print helpers
149 println!("11. Print helpers:");
150 let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
151 print.accept(&42, &10);
152
153 let print_with =
154 BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
155 print_with.accept(&800, &600);
156 println!();
157
158 // 12. Converting to function
159 println!("12. Converting to function:");
160 let log = Arc::new(Mutex::new(Vec::new()));
161 let l = log.clone();
162 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
163 l.lock().unwrap().push(*x + *y);
164 });
165 let func = consumer.into_fn();
166 func(&7, &3);
167 println!(" Log: {:?}\n", *log.lock().unwrap());
168
169 println!("=== Demo Complete ===");
170}Sourcepub fn new_with_name<F>(name: &str, f: F) -> Self
pub fn new_with_name<F>(name: &str, f: F) -> Self
Creates a new named bi-consumer.
Wraps the provided closure and assigns it a name, which is useful for debugging and logging purposes.
Sourcepub fn new_with_optional_name<F>(f: F, name: Option<String>) -> Self
pub fn new_with_optional_name<F>(f: F, name: Option<String>) -> Self
Creates a new named bi-consumer with an optional name.
Wraps the provided closure and assigns it an optional name.
Sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Examples found in repository?
24fn main() {
25 println!("=== BiConsumerOnce Demo ===\n");
26
27 // 1. Basic usage
28 println!("1. Basic usage:");
29 let log = Arc::new(Mutex::new(Vec::new()));
30 let l = log.clone();
31 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
32 l.lock().unwrap().push(*x + *y);
33 println!(" Sum: {}", x + y);
34 });
35 consumer.accept(&10, &5);
36 println!(" Log: {:?}\n", *log.lock().unwrap());
37
38 // 2. Method chaining
39 println!("2. Method chaining:");
40 let log = Arc::new(Mutex::new(Vec::new()));
41 let l1 = log.clone();
42 let l2 = log.clone();
43 let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
44 l1.lock().unwrap().push(*x + *y);
45 println!(" First: sum={}", x + y);
46 })
47 .and_then(move |x: &i32, y: &i32| {
48 l2.lock().unwrap().push(*x * *y);
49 println!(" Second: product={}", x * y);
50 });
51 chained.accept(&5, &3);
52 println!(" Log: {:?}\n", *log.lock().unwrap());
53
54 // 3. Conditional execution - true case
55 println!("3. Conditional execution - true case:");
56 let log = Arc::new(Mutex::new(Vec::new()));
57 let l = log.clone();
58 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
59 l.lock().unwrap().push(*x + *y);
60 })
61 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
62 conditional.accept(&5, &3);
63 println!(" Positive values: {:?}\n", *log.lock().unwrap());
64
65 // 4. Conditional execution - false case
66 println!("4. Conditional execution - false case:");
67 let log = Arc::new(Mutex::new(Vec::new()));
68 let l = log.clone();
69 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
70 l.lock().unwrap().push(*x + *y);
71 })
72 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
73 conditional.accept(&-5, &3);
74 println!(" Negative value (unchanged): {:?}\n", *log.lock().unwrap());
75
76 // 5. Conditional branching
77 println!("5. Conditional branching:");
78 let log = Arc::new(Mutex::new(Vec::new()));
79 let l1 = log.clone();
80 let l2 = log.clone();
81 let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
82 l1.lock().unwrap().push(*x);
83 })
84 .when(|x: &i32, y: &i32| *x > *y)
85 .or_else(move |_x: &i32, y: &i32| {
86 l2.lock().unwrap().push(*y);
87 });
88 branch.accept(&15, &10);
89 println!(" When x > y: {:?}\n", *log.lock().unwrap());
90
91 // 6. Working with closures directly
92 println!("6. Working with closures directly:");
93 let log = Arc::new(Mutex::new(Vec::new()));
94 let l = log.clone();
95 let closure = move |x: &i32, y: &i32| {
96 l.lock().unwrap().push(*x + *y);
97 println!(" Processed: {}", x + y);
98 };
99 closure.accept(&10, &20);
100 println!(" Log: {:?}\n", *log.lock().unwrap());
101
102 // 7. Moving captured values
103 println!("7. Moving captured values:");
104 let data = vec![1, 2, 3, 4, 5];
105 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
106 println!(" x={}, y={}", x, y);
107 println!(" Captured data: {:?}", data);
108 println!(" Data sum: {}", data.iter().sum::<i32>());
109 });
110 consumer.accept(&5, &3);
111 // data is no longer available here
112 println!();
113
114 // 8. Initialization callback
115 println!("8. Initialization callback:");
116 let log = Arc::new(Mutex::new(Vec::new()));
117 let l = log.clone();
118 let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
119 println!(" Initializing with dimensions: {}x{}", width, height);
120 l.lock().unwrap().push(*width * *height);
121 });
122 init_callback.accept(&800, &600);
123 println!(" Areas: {:?}\n", *log.lock().unwrap());
124
125 // 9. Cleanup callback
126 println!("9. Cleanup callback:");
127 let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
128 println!(" Cleanup: processed {} out of {} items", count, total);
129 println!(
130 " Success rate: {:.1}%",
131 (*count as f64 / *total as f64) * 100.0
132 );
133 });
134 cleanup.accept(&85, &100);
135 println!();
136
137 // 10. Name support
138 println!("10. Name support:");
139 let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
140 println!(" Initial name: {:?}", named_consumer.name());
141
142 named_consumer.set_name("init_callback");
143 println!(" After setting name: {:?}", named_consumer.name());
144 println!(" Display: {}", named_consumer);
145 named_consumer.accept(&1, &2);
146 println!();
147
148 // 11. Print helpers
149 println!("11. Print helpers:");
150 let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
151 print.accept(&42, &10);
152
153 let print_with =
154 BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
155 print_with.accept(&800, &600);
156 println!();
157
158 // 12. Converting to function
159 println!("12. Converting to function:");
160 let log = Arc::new(Mutex::new(Vec::new()));
161 let l = log.clone();
162 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
163 l.lock().unwrap().push(*x + *y);
164 });
165 let func = consumer.into_fn();
166 func(&7, &3);
167 println!(" Log: {:?}\n", *log.lock().unwrap());
168
169 println!("=== Demo Complete ===");
170}Sourcepub fn set_name(&mut self, name: &str)
pub fn set_name(&mut self, name: &str)
Examples found in repository?
24fn main() {
25 println!("=== BiConsumerOnce Demo ===\n");
26
27 // 1. Basic usage
28 println!("1. Basic usage:");
29 let log = Arc::new(Mutex::new(Vec::new()));
30 let l = log.clone();
31 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
32 l.lock().unwrap().push(*x + *y);
33 println!(" Sum: {}", x + y);
34 });
35 consumer.accept(&10, &5);
36 println!(" Log: {:?}\n", *log.lock().unwrap());
37
38 // 2. Method chaining
39 println!("2. Method chaining:");
40 let log = Arc::new(Mutex::new(Vec::new()));
41 let l1 = log.clone();
42 let l2 = log.clone();
43 let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
44 l1.lock().unwrap().push(*x + *y);
45 println!(" First: sum={}", x + y);
46 })
47 .and_then(move |x: &i32, y: &i32| {
48 l2.lock().unwrap().push(*x * *y);
49 println!(" Second: product={}", x * y);
50 });
51 chained.accept(&5, &3);
52 println!(" Log: {:?}\n", *log.lock().unwrap());
53
54 // 3. Conditional execution - true case
55 println!("3. Conditional execution - true case:");
56 let log = Arc::new(Mutex::new(Vec::new()));
57 let l = log.clone();
58 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
59 l.lock().unwrap().push(*x + *y);
60 })
61 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
62 conditional.accept(&5, &3);
63 println!(" Positive values: {:?}\n", *log.lock().unwrap());
64
65 // 4. Conditional execution - false case
66 println!("4. Conditional execution - false case:");
67 let log = Arc::new(Mutex::new(Vec::new()));
68 let l = log.clone();
69 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
70 l.lock().unwrap().push(*x + *y);
71 })
72 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
73 conditional.accept(&-5, &3);
74 println!(" Negative value (unchanged): {:?}\n", *log.lock().unwrap());
75
76 // 5. Conditional branching
77 println!("5. Conditional branching:");
78 let log = Arc::new(Mutex::new(Vec::new()));
79 let l1 = log.clone();
80 let l2 = log.clone();
81 let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
82 l1.lock().unwrap().push(*x);
83 })
84 .when(|x: &i32, y: &i32| *x > *y)
85 .or_else(move |_x: &i32, y: &i32| {
86 l2.lock().unwrap().push(*y);
87 });
88 branch.accept(&15, &10);
89 println!(" When x > y: {:?}\n", *log.lock().unwrap());
90
91 // 6. Working with closures directly
92 println!("6. Working with closures directly:");
93 let log = Arc::new(Mutex::new(Vec::new()));
94 let l = log.clone();
95 let closure = move |x: &i32, y: &i32| {
96 l.lock().unwrap().push(*x + *y);
97 println!(" Processed: {}", x + y);
98 };
99 closure.accept(&10, &20);
100 println!(" Log: {:?}\n", *log.lock().unwrap());
101
102 // 7. Moving captured values
103 println!("7. Moving captured values:");
104 let data = vec![1, 2, 3, 4, 5];
105 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
106 println!(" x={}, y={}", x, y);
107 println!(" Captured data: {:?}", data);
108 println!(" Data sum: {}", data.iter().sum::<i32>());
109 });
110 consumer.accept(&5, &3);
111 // data is no longer available here
112 println!();
113
114 // 8. Initialization callback
115 println!("8. Initialization callback:");
116 let log = Arc::new(Mutex::new(Vec::new()));
117 let l = log.clone();
118 let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
119 println!(" Initializing with dimensions: {}x{}", width, height);
120 l.lock().unwrap().push(*width * *height);
121 });
122 init_callback.accept(&800, &600);
123 println!(" Areas: {:?}\n", *log.lock().unwrap());
124
125 // 9. Cleanup callback
126 println!("9. Cleanup callback:");
127 let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
128 println!(" Cleanup: processed {} out of {} items", count, total);
129 println!(
130 " Success rate: {:.1}%",
131 (*count as f64 / *total as f64) * 100.0
132 );
133 });
134 cleanup.accept(&85, &100);
135 println!();
136
137 // 10. Name support
138 println!("10. Name support:");
139 let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
140 println!(" Initial name: {:?}", named_consumer.name());
141
142 named_consumer.set_name("init_callback");
143 println!(" After setting name: {:?}", named_consumer.name());
144 println!(" Display: {}", named_consumer);
145 named_consumer.accept(&1, &2);
146 println!();
147
148 // 11. Print helpers
149 println!("11. Print helpers:");
150 let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
151 print.accept(&42, &10);
152
153 let print_with =
154 BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
155 print_with.accept(&800, &600);
156 println!();
157
158 // 12. Converting to function
159 println!("12. Converting to function:");
160 let log = Arc::new(Mutex::new(Vec::new()));
161 let l = log.clone();
162 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
163 l.lock().unwrap().push(*x + *y);
164 });
165 let func = consumer.into_fn();
166 func(&7, &3);
167 println!(" Log: {:?}\n", *log.lock().unwrap());
168
169 println!("=== Demo Complete ===");
170}Sourcepub fn clear_name(&mut self)
pub fn clear_name(&mut self)
Clears the name of this bi-consumer.
Sourcepub fn noop() -> Self
pub fn noop() -> Self
Creates a no-operation bi-consumer.
Creates a bi-consumer that does nothing when called. Useful for default values or placeholder implementations.
§Returns
Returns a new bi-consumer instance that performs no operation.
Examples found in repository?
24fn main() {
25 println!("=== BiConsumerOnce Demo ===\n");
26
27 // 1. Basic usage
28 println!("1. Basic usage:");
29 let log = Arc::new(Mutex::new(Vec::new()));
30 let l = log.clone();
31 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
32 l.lock().unwrap().push(*x + *y);
33 println!(" Sum: {}", x + y);
34 });
35 consumer.accept(&10, &5);
36 println!(" Log: {:?}\n", *log.lock().unwrap());
37
38 // 2. Method chaining
39 println!("2. Method chaining:");
40 let log = Arc::new(Mutex::new(Vec::new()));
41 let l1 = log.clone();
42 let l2 = log.clone();
43 let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
44 l1.lock().unwrap().push(*x + *y);
45 println!(" First: sum={}", x + y);
46 })
47 .and_then(move |x: &i32, y: &i32| {
48 l2.lock().unwrap().push(*x * *y);
49 println!(" Second: product={}", x * y);
50 });
51 chained.accept(&5, &3);
52 println!(" Log: {:?}\n", *log.lock().unwrap());
53
54 // 3. Conditional execution - true case
55 println!("3. Conditional execution - true case:");
56 let log = Arc::new(Mutex::new(Vec::new()));
57 let l = log.clone();
58 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
59 l.lock().unwrap().push(*x + *y);
60 })
61 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
62 conditional.accept(&5, &3);
63 println!(" Positive values: {:?}\n", *log.lock().unwrap());
64
65 // 4. Conditional execution - false case
66 println!("4. Conditional execution - false case:");
67 let log = Arc::new(Mutex::new(Vec::new()));
68 let l = log.clone();
69 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
70 l.lock().unwrap().push(*x + *y);
71 })
72 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
73 conditional.accept(&-5, &3);
74 println!(" Negative value (unchanged): {:?}\n", *log.lock().unwrap());
75
76 // 5. Conditional branching
77 println!("5. Conditional branching:");
78 let log = Arc::new(Mutex::new(Vec::new()));
79 let l1 = log.clone();
80 let l2 = log.clone();
81 let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
82 l1.lock().unwrap().push(*x);
83 })
84 .when(|x: &i32, y: &i32| *x > *y)
85 .or_else(move |_x: &i32, y: &i32| {
86 l2.lock().unwrap().push(*y);
87 });
88 branch.accept(&15, &10);
89 println!(" When x > y: {:?}\n", *log.lock().unwrap());
90
91 // 6. Working with closures directly
92 println!("6. Working with closures directly:");
93 let log = Arc::new(Mutex::new(Vec::new()));
94 let l = log.clone();
95 let closure = move |x: &i32, y: &i32| {
96 l.lock().unwrap().push(*x + *y);
97 println!(" Processed: {}", x + y);
98 };
99 closure.accept(&10, &20);
100 println!(" Log: {:?}\n", *log.lock().unwrap());
101
102 // 7. Moving captured values
103 println!("7. Moving captured values:");
104 let data = vec![1, 2, 3, 4, 5];
105 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
106 println!(" x={}, y={}", x, y);
107 println!(" Captured data: {:?}", data);
108 println!(" Data sum: {}", data.iter().sum::<i32>());
109 });
110 consumer.accept(&5, &3);
111 // data is no longer available here
112 println!();
113
114 // 8. Initialization callback
115 println!("8. Initialization callback:");
116 let log = Arc::new(Mutex::new(Vec::new()));
117 let l = log.clone();
118 let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
119 println!(" Initializing with dimensions: {}x{}", width, height);
120 l.lock().unwrap().push(*width * *height);
121 });
122 init_callback.accept(&800, &600);
123 println!(" Areas: {:?}\n", *log.lock().unwrap());
124
125 // 9. Cleanup callback
126 println!("9. Cleanup callback:");
127 let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
128 println!(" Cleanup: processed {} out of {} items", count, total);
129 println!(
130 " Success rate: {:.1}%",
131 (*count as f64 / *total as f64) * 100.0
132 );
133 });
134 cleanup.accept(&85, &100);
135 println!();
136
137 // 10. Name support
138 println!("10. Name support:");
139 let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
140 println!(" Initial name: {:?}", named_consumer.name());
141
142 named_consumer.set_name("init_callback");
143 println!(" After setting name: {:?}", named_consumer.name());
144 println!(" Display: {}", named_consumer);
145 named_consumer.accept(&1, &2);
146 println!();
147
148 // 11. Print helpers
149 println!("11. Print helpers:");
150 let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
151 print.accept(&42, &10);
152
153 let print_with =
154 BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
155 print_with.accept(&800, &600);
156 println!();
157
158 // 12. Converting to function
159 println!("12. Converting to function:");
160 let log = Arc::new(Mutex::new(Vec::new()));
161 let l = log.clone();
162 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
163 l.lock().unwrap().push(*x + *y);
164 });
165 let func = consumer.into_fn();
166 func(&7, &3);
167 println!(" Log: {:?}\n", *log.lock().unwrap());
168
169 println!("=== Demo Complete ===");
170}Sourcepub fn when<P>(self, predicate: P) -> BoxConditionalBiConsumerOnce<T, U>where
T: 'static,
U: 'static,
P: BiPredicate<T, U> + 'static,
pub fn when<P>(self, predicate: P) -> BoxConditionalBiConsumerOnce<T, U>where
T: 'static,
U: 'static,
P: BiPredicate<T, U> + 'static,
Creates a conditional two-parameter consumer that executes based on bi-predicate result.
§Parameters
predicate- The bi-predicate to determine whether to execute the consumption operation
§Returns
Returns a conditional two-parameter consumer that only executes
when the predicate returns true.
§Examples
use std::sync::Arc;
use std::sync::atomic::{AtomicI32, Ordering};
use qubit_function::consumers::*;
let counter = Arc::new(AtomicI32::new(0));
let bi_consumer = BoxBiConsumer::new({
let counter = Arc::clone(&counter);
move |key: &String, value: &i32| {
if key == "increment" {
counter.fetch_add(*value, Ordering::SeqCst);
}
}
});
let conditional = bi_consumer.when(|key: &String, value: &i32| *value > 0);
conditional.accept(&"increment".to_string(), &5); // counter = 5
conditional.accept(&"increment".to_string(), &-2); // not executedExamples found in repository?
24fn main() {
25 println!("=== BiConsumerOnce Demo ===\n");
26
27 // 1. Basic usage
28 println!("1. Basic usage:");
29 let log = Arc::new(Mutex::new(Vec::new()));
30 let l = log.clone();
31 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
32 l.lock().unwrap().push(*x + *y);
33 println!(" Sum: {}", x + y);
34 });
35 consumer.accept(&10, &5);
36 println!(" Log: {:?}\n", *log.lock().unwrap());
37
38 // 2. Method chaining
39 println!("2. Method chaining:");
40 let log = Arc::new(Mutex::new(Vec::new()));
41 let l1 = log.clone();
42 let l2 = log.clone();
43 let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
44 l1.lock().unwrap().push(*x + *y);
45 println!(" First: sum={}", x + y);
46 })
47 .and_then(move |x: &i32, y: &i32| {
48 l2.lock().unwrap().push(*x * *y);
49 println!(" Second: product={}", x * y);
50 });
51 chained.accept(&5, &3);
52 println!(" Log: {:?}\n", *log.lock().unwrap());
53
54 // 3. Conditional execution - true case
55 println!("3. Conditional execution - true case:");
56 let log = Arc::new(Mutex::new(Vec::new()));
57 let l = log.clone();
58 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
59 l.lock().unwrap().push(*x + *y);
60 })
61 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
62 conditional.accept(&5, &3);
63 println!(" Positive values: {:?}\n", *log.lock().unwrap());
64
65 // 4. Conditional execution - false case
66 println!("4. Conditional execution - false case:");
67 let log = Arc::new(Mutex::new(Vec::new()));
68 let l = log.clone();
69 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
70 l.lock().unwrap().push(*x + *y);
71 })
72 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
73 conditional.accept(&-5, &3);
74 println!(" Negative value (unchanged): {:?}\n", *log.lock().unwrap());
75
76 // 5. Conditional branching
77 println!("5. Conditional branching:");
78 let log = Arc::new(Mutex::new(Vec::new()));
79 let l1 = log.clone();
80 let l2 = log.clone();
81 let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
82 l1.lock().unwrap().push(*x);
83 })
84 .when(|x: &i32, y: &i32| *x > *y)
85 .or_else(move |_x: &i32, y: &i32| {
86 l2.lock().unwrap().push(*y);
87 });
88 branch.accept(&15, &10);
89 println!(" When x > y: {:?}\n", *log.lock().unwrap());
90
91 // 6. Working with closures directly
92 println!("6. Working with closures directly:");
93 let log = Arc::new(Mutex::new(Vec::new()));
94 let l = log.clone();
95 let closure = move |x: &i32, y: &i32| {
96 l.lock().unwrap().push(*x + *y);
97 println!(" Processed: {}", x + y);
98 };
99 closure.accept(&10, &20);
100 println!(" Log: {:?}\n", *log.lock().unwrap());
101
102 // 7. Moving captured values
103 println!("7. Moving captured values:");
104 let data = vec![1, 2, 3, 4, 5];
105 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
106 println!(" x={}, y={}", x, y);
107 println!(" Captured data: {:?}", data);
108 println!(" Data sum: {}", data.iter().sum::<i32>());
109 });
110 consumer.accept(&5, &3);
111 // data is no longer available here
112 println!();
113
114 // 8. Initialization callback
115 println!("8. Initialization callback:");
116 let log = Arc::new(Mutex::new(Vec::new()));
117 let l = log.clone();
118 let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
119 println!(" Initializing with dimensions: {}x{}", width, height);
120 l.lock().unwrap().push(*width * *height);
121 });
122 init_callback.accept(&800, &600);
123 println!(" Areas: {:?}\n", *log.lock().unwrap());
124
125 // 9. Cleanup callback
126 println!("9. Cleanup callback:");
127 let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
128 println!(" Cleanup: processed {} out of {} items", count, total);
129 println!(
130 " Success rate: {:.1}%",
131 (*count as f64 / *total as f64) * 100.0
132 );
133 });
134 cleanup.accept(&85, &100);
135 println!();
136
137 // 10. Name support
138 println!("10. Name support:");
139 let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
140 println!(" Initial name: {:?}", named_consumer.name());
141
142 named_consumer.set_name("init_callback");
143 println!(" After setting name: {:?}", named_consumer.name());
144 println!(" Display: {}", named_consumer);
145 named_consumer.accept(&1, &2);
146 println!();
147
148 // 11. Print helpers
149 println!("11. Print helpers:");
150 let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
151 print.accept(&42, &10);
152
153 let print_with =
154 BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
155 print_with.accept(&800, &600);
156 println!();
157
158 // 12. Converting to function
159 println!("12. Converting to function:");
160 let log = Arc::new(Mutex::new(Vec::new()));
161 let l = log.clone();
162 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
163 l.lock().unwrap().push(*x + *y);
164 });
165 let func = consumer.into_fn();
166 func(&7, &3);
167 println!(" Log: {:?}\n", *log.lock().unwrap());
168
169 println!("=== Demo Complete ===");
170}Sourcepub fn and_then<C>(self, after: C) -> BoxBiConsumerOnce<T, U>where
Self: Sized + 'static,
T: 'static,
U: 'static,
C: BiConsumerOnce<T, U> + 'static,
pub fn and_then<C>(self, after: C) -> BoxBiConsumerOnce<T, U>where
Self: Sized + 'static,
T: 'static,
U: 'static,
C: BiConsumerOnce<T, U> + 'static,
Chains execution with another two-parameter consumer, executing the current consumer first, then the subsequent consumer.
§Parameters
after- The subsequent two-parameter consumer to execute after the current consumer completes
§Returns
Returns a new two-parameter consumer that executes the current consumer and the subsequent consumer in sequence.
§Examples
use std::sync::Arc;
use std::sync::atomic::{AtomicI32, Ordering};
use qubit_function::consumers::*;
let counter1 = Arc::new(AtomicI32::new(0));
let counter2 = Arc::new(AtomicI32::new(0));
let bi_consumer1 = BoxBiConsumer::new({
let counter = Arc::clone(&counter1);
move |key: &String, value: &i32| {
counter.fetch_add(*value, Ordering::SeqCst);
}
});
let bi_consumer2 = BoxBiConsumer::new({
let counter = Arc::clone(&counter2);
move |key: &String, value: &i32| {
counter.fetch_add(*value * 2, Ordering::SeqCst);
}
});
let chained = bi_consumer1.and_then(bi_consumer2);
chained.accept(&"test".to_string(), &3);
// counter1 = 3, counter2 = 6Examples found in repository?
24fn main() {
25 println!("=== BiConsumerOnce Demo ===\n");
26
27 // 1. Basic usage
28 println!("1. Basic usage:");
29 let log = Arc::new(Mutex::new(Vec::new()));
30 let l = log.clone();
31 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
32 l.lock().unwrap().push(*x + *y);
33 println!(" Sum: {}", x + y);
34 });
35 consumer.accept(&10, &5);
36 println!(" Log: {:?}\n", *log.lock().unwrap());
37
38 // 2. Method chaining
39 println!("2. Method chaining:");
40 let log = Arc::new(Mutex::new(Vec::new()));
41 let l1 = log.clone();
42 let l2 = log.clone();
43 let chained = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
44 l1.lock().unwrap().push(*x + *y);
45 println!(" First: sum={}", x + y);
46 })
47 .and_then(move |x: &i32, y: &i32| {
48 l2.lock().unwrap().push(*x * *y);
49 println!(" Second: product={}", x * y);
50 });
51 chained.accept(&5, &3);
52 println!(" Log: {:?}\n", *log.lock().unwrap());
53
54 // 3. Conditional execution - true case
55 println!("3. Conditional execution - true case:");
56 let log = Arc::new(Mutex::new(Vec::new()));
57 let l = log.clone();
58 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
59 l.lock().unwrap().push(*x + *y);
60 })
61 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
62 conditional.accept(&5, &3);
63 println!(" Positive values: {:?}\n", *log.lock().unwrap());
64
65 // 4. Conditional execution - false case
66 println!("4. Conditional execution - false case:");
67 let log = Arc::new(Mutex::new(Vec::new()));
68 let l = log.clone();
69 let conditional = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
70 l.lock().unwrap().push(*x + *y);
71 })
72 .when(|x: &i32, y: &i32| *x > 0 && *y > 0);
73 conditional.accept(&-5, &3);
74 println!(" Negative value (unchanged): {:?}\n", *log.lock().unwrap());
75
76 // 5. Conditional branching
77 println!("5. Conditional branching:");
78 let log = Arc::new(Mutex::new(Vec::new()));
79 let l1 = log.clone();
80 let l2 = log.clone();
81 let branch = BoxBiConsumerOnce::new(move |x: &i32, _y: &i32| {
82 l1.lock().unwrap().push(*x);
83 })
84 .when(|x: &i32, y: &i32| *x > *y)
85 .or_else(move |_x: &i32, y: &i32| {
86 l2.lock().unwrap().push(*y);
87 });
88 branch.accept(&15, &10);
89 println!(" When x > y: {:?}\n", *log.lock().unwrap());
90
91 // 6. Working with closures directly
92 println!("6. Working with closures directly:");
93 let log = Arc::new(Mutex::new(Vec::new()));
94 let l = log.clone();
95 let closure = move |x: &i32, y: &i32| {
96 l.lock().unwrap().push(*x + *y);
97 println!(" Processed: {}", x + y);
98 };
99 closure.accept(&10, &20);
100 println!(" Log: {:?}\n", *log.lock().unwrap());
101
102 // 7. Moving captured values
103 println!("7. Moving captured values:");
104 let data = vec![1, 2, 3, 4, 5];
105 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
106 println!(" x={}, y={}", x, y);
107 println!(" Captured data: {:?}", data);
108 println!(" Data sum: {}", data.iter().sum::<i32>());
109 });
110 consumer.accept(&5, &3);
111 // data is no longer available here
112 println!();
113
114 // 8. Initialization callback
115 println!("8. Initialization callback:");
116 let log = Arc::new(Mutex::new(Vec::new()));
117 let l = log.clone();
118 let init_callback = BoxBiConsumerOnce::new(move |width: &i32, height: &i32| {
119 println!(" Initializing with dimensions: {}x{}", width, height);
120 l.lock().unwrap().push(*width * *height);
121 });
122 init_callback.accept(&800, &600);
123 println!(" Areas: {:?}\n", *log.lock().unwrap());
124
125 // 9. Cleanup callback
126 println!("9. Cleanup callback:");
127 let cleanup = BoxBiConsumerOnce::new(|count: &i32, total: &i32| {
128 println!(" Cleanup: processed {} out of {} items", count, total);
129 println!(
130 " Success rate: {:.1}%",
131 (*count as f64 / *total as f64) * 100.0
132 );
133 });
134 cleanup.accept(&85, &100);
135 println!();
136
137 // 10. Name support
138 println!("10. Name support:");
139 let mut named_consumer = BoxBiConsumerOnce::<i32, i32>::noop();
140 println!(" Initial name: {:?}", named_consumer.name());
141
142 named_consumer.set_name("init_callback");
143 println!(" After setting name: {:?}", named_consumer.name());
144 println!(" Display: {}", named_consumer);
145 named_consumer.accept(&1, &2);
146 println!();
147
148 // 11. Print helpers
149 println!("11. Print helpers:");
150 let print = BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("{}, {}", x, y));
151 print.accept(&42, &10);
152
153 let print_with =
154 BoxBiConsumerOnce::new(|x: &i32, y: &i32| println!("Dimensions: {}, {}", x, y));
155 print_with.accept(&800, &600);
156 println!();
157
158 // 12. Converting to function
159 println!("12. Converting to function:");
160 let log = Arc::new(Mutex::new(Vec::new()));
161 let l = log.clone();
162 let consumer = BoxBiConsumerOnce::new(move |x: &i32, y: &i32| {
163 l.lock().unwrap().push(*x + *y);
164 });
165 let func = consumer.into_fn();
166 func(&7, &3);
167 println!(" Log: {:?}\n", *log.lock().unwrap());
168
169 println!("=== Demo Complete ===");
170}