#tuple #level #joining #no-std #join

no-std tuple_join

一个用于在类型级别连接元组的crate

1 个不稳定版本

0.1.0 2023年11月9日

#5 in #joining

MIT/Apache

5KB
94

tuple_join

一个用于在类型级别连接元组的crate。


lib.rs:

一个用于在类型级别连接元组的crate。

支持最多13个元组长度。

示例

use tuple_join::*;

assert_eq!((1,2).join((3,4,5,6)), (1,2,3,4,5,6));
assert_eq!((1,2,3,4,5,6).split(), ((1,2), (3,4,5,6)));

assert_eq!((1,2,3).push("hello"), (1,2,3,"hello"));
assert_eq!(("ferris", "the", "rustacean").pop(), (("ferris", "the"), "rustacean"));

无运行时依赖