mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-18 12:01:16 -03:00
Add acquire() to maybe_t
Easy way to pull the value out.
This commit is contained in:
@@ -4491,6 +4491,12 @@ void test_maybe() {
|
||||
do_test(m4 && *m4 == "hi");
|
||||
maybe_t<std::string> m5 = m0;
|
||||
do_test(!m5);
|
||||
|
||||
maybe_t<std::string> acquire_test("def");
|
||||
do_test(acquire_test);
|
||||
std::string res = acquire_test.acquire();
|
||||
do_test(!acquire_test);
|
||||
do_test(res == "def");
|
||||
}
|
||||
|
||||
void test_layout_cache() {
|
||||
|
||||
Reference in New Issue
Block a user