mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
16 lines
237 B
Plaintext
16 lines
237 B
Plaintext
module std::collections::tuple(<Type1, Type2>);
|
|
|
|
struct Tuple @deprecated
|
|
{
|
|
Type1 first;
|
|
Type2 second;
|
|
}
|
|
|
|
module std::collections::triple(<Type1, Type2, Type3>);
|
|
|
|
struct Triple @deprecated
|
|
{
|
|
Type1 first;
|
|
Type2 second;
|
|
Type3 third;
|
|
} |