A cursed crate that allows for global call chaining with access to chained function results
Currently the results
feature requires the min_specialization
Rust Nightly feature.
```toml [dependencies] chainer = "*"
[dependencies] chainer = { version = "*", features = ["results"] } ```
```rust use chainer::*;
struct HelloWorld; impl HelloWorld { fn print(&self) { println!("Hello, world!"); } }
fn main() { HelloWorld .chain(HelloWorld::print) .chain(HelloWorld::print) .chain(HelloWorld::print);
// Hello, world!
// Hello, world!
// Hello, world!
} ```
```rust use chainer::*;
struct Counter { value: i32 } impl Counter { fn increment(&mut self) { self.value += 1; println!("{}", self.value); } }
fn main() { Counter { value: 0 } .chainmut(Counter::increment) .chainmut(Counter::increment) .chain_mut(Counter::increment);
// 1
// 2
// 3
} ```
features = ["results"]
```rust use chainer::*;
struct HelloWorld; impl HelloWorld { fn print(&self) -> &'static str { println!("Hello, world!"); "It works!" } }
fn main() { let value: &'static str = HelloWorld .chain(HelloWorld::print) .chain(HelloWorld::print) .chain(HelloWorld::print) .result;
// Hello, world!
// Hello, world!
// Hello, world!
// It works!
} ```
```rust use chainer::*;
struct Counter { value: i32 } impl Counter { fn increment(&mut self) -> i32 { self.value += 1; println!("{}", self.value); self.value } }
fn main() { let value: i32 = Counter { value: 0 } .chainmut(Counter::increment) .chainmut(Counter::increment) .chain_mut(Counter::increment) .result;
println!("{value}");
// 1
// 2
// 3
// 3
} ```