5 releases
0.1.4 | Jun 26, 2022 |
---|---|
0.1.3 | Jun 12, 2022 |
0.1.2 | May 25, 2022 |
0.1.1 | May 25, 2022 |
0.1.0 | May 25, 2022 |
#2678 in Development tools
2,184 downloads per month
2MB
54K
SLoC
Module :: std_tools
Collection of general purpose tools for solving problems. Fundamentally extend the language without spoiling, so may be used solely or in conjunction with another module of such kind.
Sample :: implements
use std_tools::prelude::*;
fn main()
{
println!( "implements!( 13_i32 => Copy ) : {}", implements!( 13_i32 => Copy ) );
println!( "implements!( Box::new( 13_i32 ) => Copy ) : {}", implements!( Box::new( 13_i32 ) => Copy ) );
}
Sample :: type constructors
In Rust, you often need to wrap a given type into a new one. The role of the orphan rules in particular is basically to prevent you from implementing external traits for external types. To overcome the restriction developer usually wrap the external type into a tuple introducing a new type. Type constructor does exactly that and auto-implement traits From, Into, Deref and few more for the constructed type.
Macro types is responsible for generating code for Single, Pair, Homopair, Many. Each type constructor has its own keyword for that, but Pair and Homopair use the same keyword difference in a number of constituent types. It is possible to define all types at once.
use std_tools::prelude::*;
// types!
// {
//
// single MySingle : f32;
// single SingleWithParametrized : std::sync::Arc< T : Copy >;
// single SingleWithParameter : < T >;
//
// pair MyPair : f32;
// pair PairWithParametrized : std::sync::Arc< T1 : Copy >, std::sync::Arc< T2 : Copy >;
// pair PairWithParameter : < T1, T2 >;
//
// pair MyHomoPair : f32;
// pair HomoPairWithParametrized : std::sync::Arc< T : Copy >;
// pair HomoPairWithParameter : < T >;
//
// many MyMany : f32;
// many ManyWithParametrized : std::sync::Arc< T : Copy >;
// many ManyWithParameter : < T >;
//
// }
Dependencies
~2.3–4MB
~92K SLoC