# my_tuple A pretty implementation of tuple, recursively, strong typed, fast, abstract. ## Pros and Cons ### Advantage Safe, strong typed, fast. Abstract. Ability to support varargs. Ability of polymorphism. Capable speed vs native tuple when enumerate values. ### Disadvantage Unreadable type error. Too abstract. Lower speed to just access latter value compares to native tuple. ## Usage & Examples see my_tuple::examples::examples::example