summaryrefslogtreecommitdiff
path: root/AK/Tuple.h
AgeCommit message (Collapse)Author
2022-12-03Everywhere: Run clang-formatLinus Groh
2022-11-26AK: Make it possible to not `using` AK classes into the global namespaceAndreas Kling
This patch adds the `USING_AK_GLOBALLY` macro which is enabled by default, but can be overridden by build flags. This is a step towards integrating Jakt and AK types.
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2021-08-02AK: Correct Tuple's constructor signaturesAli Mohammad Pur
Tuple previously required rvalue references, this commit makes it accept forwarding references instead (which was the intention all along).
2021-05-18AK: Add deduction guides to TupleAli Mohammad Pur
2021-05-11AK: Add a Tuple implementationAli Mohammad Pur
Please don't use this outside of metaprogramming needs, *please*.