Lines Matching refs:isOk
47175 bool isOk() const { return mStorage.template is<V>(); }
47197 bool isOk() const { return mStorage.template is<V>(); }
47215 bool isOk() const { return mErrorValue == nullptr; }
47244 bool isOk() const { return (mBits & 1) == 0; }
47293 bool isOk() const { return data.ok; }
47395 bool isOk() const { return mImpl.isOk(); }
47398 bool isErr() const { return !mImpl.isOk(); }
47415 return isOk() ? RetResult(f(unwrap())) : RetResult(unwrapErr());
47425 return isOk() ? f(unwrap()) : GenericErrorResult<E>(unwrapErr());