serenity/AK/Tests
Andreas Kling 55a5c46253 AK: Add Vector::insert_before_matching(T&&, callback);
This allows you to do things like:

vector.insert_before_matching(value, [](auto& entry) {
    return value < entry;
});

Basically it scans until it finds an element that matches the condition
callback and then inserts the new value before the matching element.
2019-07-04 14:20:48 +02:00
..
Makefile AK: Make a tiny JSON unit test based on a saved VisualBuilder form. 2019-06-29 12:07:42 +02:00
TestHashMap.cpp AK: Use a SinglyLinkedList<T> as HashTable's bucket chain storage. 2019-06-27 16:36:31 +02:00
TestHelpers.h AK/Tests: Add a simple EXPECT_EQ macro and use it for the String test. 2019-06-14 17:52:51 +02:00
TestJSON.cpp AK: Make a tiny JSON unit test based on a saved VisualBuilder form. 2019-06-29 12:07:42 +02:00
TestQueue.cpp AK: Add String::number() for creating a String from a number. 2019-07-03 14:56:27 +02:00
TestString.cpp AK/Tests: Add a simple EXPECT_EQ macro and use it for the String test. 2019-06-14 17:52:51 +02:00
TestVector.cpp AK: Add Vector::insert_before_matching(T&&, callback); 2019-07-04 14:20:48 +02:00