ORIGINAL
Loading...
Searching...
No Matches
tuple.h File Reference

Heterogeneous tuple container implementation. More...

#include "printable.h"
#include "comparable.h"
#include "couple.h"
#include "types.h"
Include dependency graph for tuple.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  original::tuple< TYPES >
 A fixed-size heterogeneous container that stores elements of different types. More...
 

Namespaces

namespace  original
 Main namespace for the project Original.
 

Functions

template<typename F_TYPE, typename S_TYPE>
tuple< F_TYPE, S_TYPE > original::makeTuple (const couple< F_TYPE, S_TYPE > &cp)
 
template<typename... L_TYPES, typename... R_TYPES>
tuple< L_TYPES..., R_TYPES... > original::operator+ (const tuple< L_TYPES... > &lt, const tuple< R_TYPES... > &rt)
 

Detailed Description

Heterogeneous tuple container implementation.

This file implements a type-safe, compile-time fixed-size tuple container with:

  • Value semantics
  • Deep copy/move operations
  • Index-based element access
  • Lexicographical comparison
  • String serialization
Note
The implementation uses recursive template instantiation for element storage