Crates.io | qwutils |
lib.rs | qwutils |
version | 0.3.1 |
source | src |
created_at | 2020-04-13 19:26:10.713574 |
updated_at | 2021-02-04 13:12:42.922589 |
description | some utilities |
homepage | |
repository | https://github.com/qwertz19281/rust_utils |
max_upload_size | |
id | 229789 |
size | 58,254 |
use qwutils::*;
Option {
fn with(&self, |&T|->R) -> R; //short for as_ref().map()
fn with_if(&self, &Option<U>, |&T,&U|->R) -> R;
fn add/sub/mul/div_to(&self, &V);
}
bool {
fn map(&self,||->R) -> R;
//map_or, map_or_else also available
fn option(&self) -> Option<()>;
fn result(&self) -> Result<(),()>;
//more bool impls: https://crates.io/crates/boolinator
}
Array/Tuple {
[T; N]::to_tuple(self) -> (T, ...);
(T, ...)::to_array(self) -> [T; N];
}
Vec {
fn push_option(&mut self, o: Option<T>);
fn grow_to_with(&mut self, len, ||->T);
fn grow_to(&mut self, len, T) where T: Clone;
fn grow_to_default(&mut self, len) where T: Default;
}
Result {
fn expect_nodebug(&self, &str); //for T without Debug
//expect_err, unwrap, unwrap_err also available
}
Range {
fn len(&self) -> T where T: Sub<T>;
}
For most functions _mut variants are available
trait RefClonable {
fn refc(&self) -> Self;
}
refcounted.refc()
behaves like Rc/Arc::clone(&refcounted)
trait ScopedAccess {
fn access(&self, |&T|->R) -> R;
fn access_mut(&mut self, |&mut T|->R) -> R;
}
TODO
pub fn if_type<T,Specific>(||->Specific) -> T;