Home
last modified time | relevance | path

Searched defs:noexcept (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
Dexpected.h74 Expected(T v) noexcept(std::is_nothrow_move_constructible_v<T>) : v_(std::move(v)) {} in noexcept() function
76 …Expected(Unexpected<E> e) noexcept(std::is_nothrow_move_constructible_v<E>) : v_(std::move(e.Value… in noexcept() function
120 const T &operator*() const &noexcept(ExpectedConfig::RELEASE) in noexcept() function
124 T &operator*() & noexcept(ExpectedConfig::RELEASE) in noexcept() function
128 T &&operator*() && noexcept(ExpectedConfig::RELEASE) in noexcept() function