Hey folks, I would like to announce the existence of a few new macros that were added recently. They are: *CHECK_NONE, CHECK_ERROR, *AWAIT_EXPECT_TRUE and AWAIT_EXPECT_FALSE.
Please take advantage of these macros rather than spelling them out! *CHECK_NONE(x);* rather than *CHECK(x.isNone());* *CHECK_ERROR(x);* rather than *CHECK(x.isError());* *AWAIT_EXPECT_TRUE(x);* rather than *AWAIT_EXPECT_EQ(true, x);* *AWAIT_EXPECT_FALSE(x);* rather than *AWAIT_EXPECT_EQ(false, x);* Thanks, MPark.
