Files
c3c/lib7/std/collections/tuple.c3
2025-02-23 13:53:04 +01:00

16 lines
209 B
Plaintext

module std::collections::tuple{Type1, Type2};
struct Tuple
{
Type1 first;
Type2 second;
}
module std::collections::triple{Type1, Type2, Type3};
struct Triple
{
Type1 first;
Type2 second;
Type3 third;
}