spawn_fn!
Takes a closure or function and its arguments, runs the
closure or function with the passed arguments in a new thread, and
returns the thread's hook.
box_fn!
Boxes a closure.
Usage: ```rust
// use of boxed functions in structs
type T = BoxFn
struct F { c: T }
let c: T = boxfn!(|s: &str| -> String {s.tostring()});
let mut f = F { c };
f.c = boxfn!( |d: &str| -> String {"reassign once".tostring()} );
f.c = boxfn!( |: &str| {"and again".to_string()} );
// multithreading with spawn_fn!
let eg = boxfn!(|x: i32| -> i32 {x + 2}); let also = boxfn!(|x: i32, y: i32| -> i32 {x + y});
let mut v1 = Vec::new(); for i1 in 0..10000 { let i2 = i1 + 10; v1.push(spawnfn!(eg, i1)); v1.push(spawnfn!(also, i1, i2)); // woohoo multi-arity! } v1.push(spawn_fn!(||{println!("accepts closures to run in their own thread!"); 1}));
for res in v1.into_iter() { res.join(); } ```