Images 💾

Last commit ⭐

commit aaf54f8cf81cfdfd04771ad3b9ce5c21c819eef4
Author:     Lucas CHOLLET <lucas.chollet@free.fr>
AuthorDate: Tue Nov 28 00:22:46 2023 -0500
Commit:     Ali Mohammad Pur <mpfard@serenityos.org>
CommitDate: Wed Nov 29 02:19:41 2023 +0330

    AK: Allow `Optional<T&>` to be constructed by `OptionalNone()`
    
    This is an extension of cc0b970d but for the reference-handling
    specialization of Optional.
    
    This basically allow us to write code like:
    ```cpp
    Optional<u8&> opt;
    opt = OptionalNone{};
    ```