A fixed-size heterogeneous container that stores elements of different types.
More...
|
| tuple (const TYPES &... e) |
| Constructs a tuple with given elements.
|
|
| tuple (const tuple &other) |
| Copy constructor.
|
|
tuple & | operator= (const tuple &other) |
| Copy assignment operator.
|
|
| tuple (tuple &&other) noexcept |
| Move constructor.
|
|
tuple & | operator= (tuple &&other) noexcept |
| Move assignment operator.
|
|
constexpr u_integer | size () |
| Get the number of elements in the tuple.
|
|
template<u_integer IDX> |
auto | get () const |
| Get element by index.
|
|
template<u_integer IDX, typename E> |
void | set (const E &e) |
| Set element by index.
|
|
template<u_integer BEGIN_IDX, u_integer N_ELEMS> |
auto | slice () const |
| Slice the tuple from a specific index.
|
|
integer | compareTo (const tuple &other) const override |
| Compare two tuples lexicographically.
|
|
std::string | toString (bool enter) const override |
| Generate formatted string representation.
|
|
std::string | className () const override |
| Get class name identifier.
|
|
template<typename... O_TYPES, original::u_integer... T_SIZE, original::u_integer... O_SIZE> |
original::tuple< TYPES..., O_TYPES... > | _concat (const tuple< O_TYPES... > &other, std::integer_sequence< u_integer, T_SIZE... >, std::integer_sequence< u_integer, O_SIZE... >) const |
|
| operator std::string () const |
| Explicit conversion to std::string.
|
|
| operator const char * () const |
| Explicit conversion to C-style string.
|
|
const char * | toCString (bool enter) const |
| Direct C-string access with formatting control.
|
|
template<typename TYPE> |
auto | formatString (const TYPE &t) -> std::string |
|
template<typename TYPE> |
auto | formatCString (const TYPE &t) -> const char * |
|
template<typename TYPE> |
auto | formatEnum (const TYPE &t) -> std::string |
|
template<typename TYPE> |
auto | formatString (TYPE *const &ptr) -> std::string |
|
virtual integer | compareTo (const tuple< TYPES... > &other) const=0 |
| Compares the current object with another of the same type.
|
|
bool | operator== (const tuple< TYPES... > &other) const |
| Checks if the current object is equal to another.
|
|
bool | operator!= (const tuple< TYPES... > &other) const |
| Checks if the current object is not equal to another.
|
|
bool | operator< (const tuple< TYPES... > &other) const |
| Checks if the current object is less than another.
|
|
bool | operator> (const tuple< TYPES... > &other) const |
| Checks if the current object is greater than another.
|
|
bool | operator<= (const tuple< TYPES... > &other) const |
| Checks if the current object is less than or equal to another.
|
|
bool | operator>= (const tuple< TYPES... > &other) const |
| Checks if the current object is greater than or equal to another.
|
|
virtual | ~comparable ()=default |
| Virtual destructor for proper cleanup of derived objects.
|
|
|
template<typename TYPE> |
static std::string | formatString (const TYPE &t) |
| Universal value-to-string conversion.
|
|
template<typename TYPE> |
static std::string | formatString (TYPE *const &ptr) |
| Pointer-specific formatting.
|
|
template<typename TYPE> |
static const char * | formatCString (const TYPE &t) |
| C-string cache for temporary usage.
|
|
template<typename TYPE> |
static std::string | formatEnum (const TYPE &t) |
| Enum formatting utility.
|
|
template<> |
auto | formatString (const char &t) -> std::string |
|
template<> |
auto | formatString (const bool &t) -> std::string |
|
template<> |
auto | formatString (const char *const &ptr) -> std::string |
|
template<typename... TYPES>
class original::tuple< TYPES >
A fixed-size heterogeneous container that stores elements of different types.
- Template Parameters
-
TYPES | Variadic template parameter list of element types @inherits printable : Provides string representation capabilities @inherits comparable : Provides comparison operations between tuples |
This tuple implementation:
- Supports element access via compile-time index
- Provides element modification via set() method
- Implements lexicographical comparison
- Supports deep copying and move semantics
- Provides type-safe element storage