xentara-utils v2.0.4
The Xentara Utility Library
|
This is the complete list of members for xentara::utils::eh::deprecated::Failable< Value >, including all inherited members.
assign(int errorValue, const std::error_category &category) noexcept -> Failable & | xentara::utils::eh::deprecated::Failable< Value > | |
error() const noexcept -> std::error_code | xentara::utils::eh::deprecated::Failable< Value > | |
Failable() noexcept(std::is_nothrow_constructible_v< Value >) | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(Initializer &&initializer) noexcept(std::is_nothrow_constructible_v< Value, Initializer && >) | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(Argument1 &&argument1, Argument2 &&argument2, MoreArguments &&... moreArguments) noexcept(std::is_nothrow_constructible_v< Value, Argument1 &&, Argument2 &&, MoreArguments &&... >) | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(std::in_place_t, Arguments &&... arguments) noexcept(std::is_nothrow_constructible_v< Value, Arguments &&... >) | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(const std::error_code &errorCode) noexcept | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(int errorValue, const std::error_category &category) noexcept | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(Enum errorEnum) noexcept | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(const Failable &)=default | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(Failable &&)=default | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(const Failable< RelatedValue > &relatedValue) noexcept(std::is_nothrow_constructible_v< Value, const RelatedValue & >) | xentara::utils::eh::deprecated::Failable< Value > | |
Failable(Failable< RelatedValue > &&relatedValue) noexcept(std::is_nothrow_constructible_v< Value, RelatedValue && >) | xentara::utils::eh::deprecated::Failable< Value > | |
failableCast(const Failable< Value > &failable) noexcept(std::is_nothrow_constructible_v< RelatedValue, const Value & >) -> Failable< RelatedValue > | xentara::utils::eh::deprecated::Failable< Value > | related |
failableCast(Failable< Value > &&failable) noexcept(std::is_nothrow_constructible_v< RelatedValue, Value && >) -> Failable< RelatedValue > | xentara::utils::eh::deprecated::Failable< Value > | related |
hasValue() const noexcept -> bool | xentara::utils::eh::deprecated::Failable< Value > | |
operator bool() const noexcept | xentara::utils::eh::deprecated::Failable< Value > | explicit |
operator std::optional< Value >() const & | xentara::utils::eh::deprecated::Failable< Value > | |
operator std::optional< Value >() && | xentara::utils::eh::deprecated::Failable< Value > | |
operator*() noexcept -> Value & | xentara::utils::eh::deprecated::Failable< Value > | |
operator*() const noexcept -> const Value & | xentara::utils::eh::deprecated::Failable< Value > | |
operator->() noexcept -> std::add_pointer_t< Value > | xentara::utils::eh::deprecated::Failable< Value > | |
operator->() const noexcept -> std::add_pointer_t< const Value > | xentara::utils::eh::deprecated::Failable< Value > | |
operator<< | xentara::utils::eh::deprecated::Failable< Value > | friend |
operator=(NewValue &&newValue) noexcept(std::is_nothrow_assignable_v< Value, NewValue && > &&std::is_nothrow_constructible_v< Value, NewValue && >) -> Failable & | xentara::utils::eh::deprecated::Failable< Value > | |
operator=(const std::error_code &errorCode) noexcept -> Failable & | xentara::utils::eh::deprecated::Failable< Value > | |
operator=(Enum errorEnum) noexcept -> Failable & | xentara::utils::eh::deprecated::Failable< Value > | |
operator=(const Failable &) -> Failable &=default | xentara::utils::eh::deprecated::Failable< Value > | |
operator=(Failable &&) -> Failable &=default | xentara::utils::eh::deprecated::Failable< Value > | |
operator=(const Failable< RelatedValue > &relatedValue) noexcept(std::is_nothrow_constructible_v< Value, const RelatedValue & >) -> Failable & | xentara::utils::eh::deprecated::Failable< Value > | |
operator=(Failable< RelatedValue > &&relatedValue) noexcept(std::is_nothrow_assignable_v< Value, RelatedValue && > &&std::is_nothrow_constructible_v< Value, RelatedValue && >) -> Failable & | xentara::utils::eh::deprecated::Failable< Value > | |
operator==(const RhsValue &value) -> bool | xentara::utils::eh::deprecated::Failable< Value > | |
operator==(const std::error_code &errorCode) -> bool | xentara::utils::eh::deprecated::Failable< Value > | |
operator==(Enum errorEnum) noexcept -> Failable & | xentara::utils::eh::deprecated::Failable< Value > | |
operator==(const Failable< LhsValue > &lhs, const Failable< RhsValue > &rhs) -> bool | xentara::utils::eh::deprecated::Failable< Value > | related |
throwError(ExceptionArguments &&... exceptionArguments) const -> void | xentara::utils::eh::deprecated::Failable< Value > | |
value() noexcept -> std::add_pointer_t< Value > | xentara::utils::eh::deprecated::Failable< Value > | |
value() const noexcept -> std::add_pointer_t< const Value > | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(const Value &fallback) const &noexcept(std::is_nothrow_copy_constructible_v< Value >) -> Value | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(Value &&fallback) const &noexcept(std::is_nothrow_copy_constructible_v< Value > &&std::is_nothrow_move_constructible_v< Value >) -> Value | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(const Value &fallback) &&noexcept(std::is_nothrow_copy_constructible_v< Value > &&std::is_nothrow_move_constructible_v< Value >) -> Value | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(Value &&fallback) &&noexcept(std::is_nothrow_move_constructible_v< Value >) -> Value | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(std::reference_wrapper< const Value > fallback) const noexcept -> const Value & | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(std::reference_wrapper< Value > fallback) noexcept -> Value & | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(Fallback &&fallback) const &noexcept(std::is_nothrow_invocable_r_v< Value, Fallback && >) -> Value | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(Fallback &&fallback) &&noexcept(std::is_nothrow_invocable_r_v< Value, Fallback && >) -> Value | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(Fallback &&fallback) const -> const Value & | xentara::utils::eh::deprecated::Failable< Value > | |
valueOr(Fallback &&fallback) -> Value & | xentara::utils::eh::deprecated::Failable< Value > | |
valueOrThrow(ExceptionArguments &&... exceptionArguments) const -> const Value & | xentara::utils::eh::deprecated::Failable< Value > | |
valueOrThrow(ExceptionArguments &&... exceptionArguments) -> Value & | xentara::utils::eh::deprecated::Failable< Value > |