Funky allows you to fire any function that implements Sync + Send quickly into a thread. The thread takes ownership of any arguments passed into the macro.
The macro returns a mpsc::Receiver on which you can block until you have the result.
Add to your Cargo.toml
funky = *
And run cargo install
Add to your main or lib file:
```rust
extern crate funky; ```
An example with no arguments:
```rust let func = || -> String { "abc".to_string() };
let rx = funky!(func); asserteq!(rx.recv().unwrap(), "abc".tostring()) ```
And with many arguments:
```rust let func = |string: String| -> String { string };
let rx = funky!(func, "abc".tostring()); asserteq!(rx.recv().unwrap(), "abc".to_string()) ```