summaryrefslogtreecommitdiff
path: root/AK/StdLibExtras.h
AgeCommit message (Expand)Author
2020-10-20Checked: constexpr supportLenny Maiorani
2020-10-04LibIPC: Make IPC::encode() and ::decode() fail at compiletime when usedAnotherTest
2020-10-02AK: Add is_trivial and is_trivially_copyableTom
2020-09-22AK: Consider long and unsigned long as integral types.asynts
2020-09-11AK: Generalise 'PrintfImplementation'AnotherTest
2020-08-27AK: Define MakeUnsigned and MakeSigned for char.asynts
2020-08-23AK: Print RHS and LHS in EXPECT_EQ if we canBen Wiederhake
2020-08-16AK: HashTable add a constructor that allows preallocation of capacity + Use i...Muhammad Zahalqa
2020-08-06AK: Add Integral and FloatingPoint concepts.asynts
2020-08-06AK: Rename MakeUnsigned::type to MakeUnsigned::Type.asynts
2020-08-06AK: Make min/max behave like the STL for equivalent inputs (#2976)Muhammad Zahalqa
2020-07-26AK: Add global is<T>() and downcast<T>()Andreas Kling
2020-07-24AK: Add a couple more helper templates to StdLibExtrasAndreas Kling
2020-07-18AK: Use "signed char" as the opposite of "unsigned char"Andreas Kling
2020-05-23AK: Add MakeSigned<T> helper templateAndreas Kling
2020-04-22AK: Tweak exchange() implementationAndreas Kling
2020-04-15AK: Add MakeUnsigned<T> helper templateAndreas Kling
2020-04-07AK: Add forward() overload that refuses to forward lvalue as rvalueAndreas Kling
2020-03-08AK: Move memory stuff (fast memcpy, etc) to a separate headerAndreas Kling
2020-03-08AK: Add a Conditional<condition, TrueType, FalseType> templateAndreas Kling
2020-02-09AK: Apply changes for the Bootstrapper environmentLiav A
2020-01-20AK: Allow clamp() with min==maxAndreas Kling
2020-01-20AK: Add clamp() functionShannon Booth
2020-01-19AK: Add some missing "inline" keywords in StdLibExtras.hAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2019-07-29Kernel+AK: Remove AK/StdLibExtras.cpp, moving kernel stuff to Kernel/.Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-27AK: Oops, fix typo in RemoveVolatile<T> helper.Andreas Kling
2019-06-24AK: Mark some helper things constexpr.Andreas Kling
2019-06-07Meta: Tweak .clang-format to not wrap braces after enums.Andreas Kling
2019-06-07AK: Run clang-format on everything.Andreas Kling
2019-06-01LibCore: CObjects without is<T> specialization shouldn't LARP as others.Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
2019-05-06Make sure all GraphicsBitmap scanlines are 16-byte aligned.Andreas Kling
2019-04-22Kernel: Don't use MMX memcpy() in the kernel.Andreas Kling
2019-04-20Get rid of SERENITY macro since the compiler already defines __serenity__Andreas Kling
2019-04-05WindowServer: Factor out window frame logic into a WSWindowFrame class.Andreas Kling
2019-03-21Use 64-bit integers inside Stopwatch to enable longer timings.Andreas Kling
2019-02-25AK: Add Retained<T>, like RetainPtr, but never null.Andreas Kling
2019-02-20Kernel: Reduce code duplication in exception handlers.Andreas Kling
2019-02-15Use modern C++ attributes instead of __attribute__ voodoo.Andreas Kling
2019-02-07Add a fast memcpy() using MMX when we're moving >= 1KB.Andreas Kling
2019-01-31Big, possibly complete sweep of naming changes.Andreas Kling
2019-01-17Get rid of #ifdef SERENITY. We're past that phase of bootstrapping.Andreas Kling
2019-01-16Optimize the Painter::blit() loop a bit. ~3% fewer cycles, I'll take it.Andreas Kling
2019-01-13Fix Userland build.Andreas Kling
2019-01-12Optimize WindowManager::flush() with fast_dword_copy().Andreas Kling
2018-12-04Import a simple text editor I started working on.Andreas Kling