Crates.io | tuplemagic |
lib.rs | tuplemagic |
version | 0.1.3 |
source | src |
created_at | 2024-08-02 15:03:36.355044 |
updated_at | 2024-08-03 01:07:38.046454 |
description | Utilities for manipulating tuples through various operations like mapping, filtering, nesting, and reducing |
homepage | |
repository | https://github.com/mmastrac/tuplemagic |
max_upload_size | |
id | 1323325 |
size | 25,410 |
TupleMagic is a Rust library that provides utilities for manipulating tuples through various operations like mapping, filtering, nesting, and reducing. This library supports both value-level and type-level operations on tuples.
TupleMagic transforms tuples into a nested form which allows for varargs-like
processing of tuple types. An input tuple of type (A, B, C)
becomes the nested
form (A, (B, (C, EOT)))
.
Turning tuples into nested types simplifies filtering and mapping operations because it leverages recursive type structures, which are inherently more adaptable to recursive traits.
Note that some features of this library are only available in macro form as the
non-macro form of the operation may be unergonomic (ie: filter
and map
operations).
# use tuplemagic::*;
let a = (1, 2, 3).nest();
# use tuplemagic::*;
type T = (Option<u8>, Option<u16>, Option<()>);
struct RemoveOption {}
impl<T> TypeMap<RemoveOption> for Option<T> {
type Mapped = T;
}
type U = tuple_mapper!(RemoveOption::map(T));
# use tuplemagic::*;
type T = (u8, u16, Option<()>);
tuple_filter_predicate!(P = { include = (u8, Vec<u8>), exclude = (u16, u32, ~ <T> Option<T>)});
type U = tuple_filter!(P::filter_type(T));
# use tuplemagic::*;
struct TupleReducerSum;
impl<T> TupleReducer<usize, T> for TupleReducerSum where T: TryInto<usize>,
{
fn reduce_one(collect: usize, from: T) -> usize {
collect + from.try_into().unwrap_or_default()
}
}
let out = TupleReducerSum::reduce((1_u8, 2_u16, 3_u32), 0);
Features of this crate may be available as macros, traits or both based on ergonomic concerns. The goal of the crate will be to eventually move to a pure trait-based system, but this does not appear possible at this time.
The underlying mechanisms of the macros are subject to change and are not considered stable at this time.
Operation | Value Level | Type Level | APIs |
---|---|---|---|
Nesting | Yes | Yes | TupleNest , TupleUnnest nest! |
Unnesting | Yes | Yes | see above |
Mapping | Yes | tuple_mapper! TypeMap |
|
Filtering | Yes | Yes | tuple_filter! tuple_filter_predicate! |
Reducing | Yes | TupleReducer , TupleReducerCapable |
Add this to your Cargo.toml
:
[dependencies]
tuplemagic = "0.x.y"