Images 💾

Last commit ⭐

commit a2591bc5fa5462ee06d76ea7335d52a2fc0600e0
Author:     Carwyn Nelson <carwyn@carwynnelson.com>
AuthorDate: Sat Jul 1 16:08:46 2023 +0100
Commit:     Ali Mohammad Pur <mpfard@serenityos.org>
CommitDate: Tue Jul 4 04:26:58 2023 +0330

    LibCore: Make ArgParser::Arg::accept_value return ErrorOr<bool>
    
    Much like the previous commit, this commit makes the
    ArgParser::Arg::accept_value callback return an ErrorOr<bool> instead of
    just a bool.
    
    The aim of this is to make argument parsing more robust, especially
    with the newer String api that returns an ErrorOr for many functions.