template<class T>
Corrade::Containers::Optional class

Optional value.

Equivalent to std::optional from C++17, provides an optional checked storage for object of type T. The optional object can be seen as a container of T objects with maximal size 1 and can be in two states, either empty or having a value.

A common use for an optional object is for a return value of function that can fail — like std::unique_ptr, but without the unnecessary allocation overhead. Like with std::unique_ptr, the presence of an object can be checked using operator bool(). The stored object can be accessed using operator->(), operator*() or using implicit conversion, while attempt to access a stored object in an empty state leads to assertion error.

Unlike std::optional, this class does not provide a constexpr implementation or ordering operators, which makes it simpler and more lightweight.

Constructors, destructors, conversion operators

Optional() noexcept
Default constructor.
Optional(NullOptT) noexcept
Null constructor.
Optional(const T& value)
Construct optional object by copy.
Optional(T&& value)
Construct optional object by move.
template<class ... Args>
Optional(InPlaceInitT, Args&&... args)
Construct optional object in place.
Optional(const Optional<T>& other)
Copy constructor.
Optional(Optional<T>&& other)
Move constructor.
~Optional()
Destructor.
operator bool() const explicit
Whether the optional object has a value.

Public functions

auto operator=(const Optional<T>& other) -> Optional<T>&
Copy assignment.
auto operator=(Optional<T>&& other) -> Optional<T>&
Move assignment.
auto operator==(const Optional<T>& other) const -> bool
Equality comparison to another optional.
auto operator!=(const Optional<T>& other) const -> bool
Non-equality comparison to another optional.
auto operator==(NullOptT) const -> bool
Equality comparison to a null optional.
auto operator!=(NullOptT) const -> bool
Non-equality comparison to a null optional.
auto operator==(const T& other) const -> bool
Equality comparison to a value.
auto operator!=(const T& other) const -> bool
Non-equality comparison to a value.
auto operator->() -> T*
Access the stored object.
auto operator->() const -> const T*
auto operator*() -> T&
Access the stored object.
auto operator*() const -> const T&
auto value() -> T& deprecated
Access the stored object.
auto value() const -> const T& deprecated
Access the stored object.
template<class ... Args>
auto emplace(Args&&... args) -> T&
Emplace a new value.

Function documentation

template<class T>
Corrade::Containers::Optional<T>::Optional() noexcept

Default constructor.

Creates an optional object in empty state.

template<class T>
Corrade::Containers::Optional<T>::Optional(NullOptT) noexcept

Null constructor.

Creates an optional object in empty state.

template<class T>
Corrade::Containers::Optional<T>::Optional(const T& value)

Construct optional object by copy.

Stores a copy of passed object.

template<class T>
Corrade::Containers::Optional<T>::Optional(T&& value)

Construct optional object by move.

Moves the passed object to internal storage.

template<class T> template<class ... Args>
Corrade::Containers::Optional<T>::Optional(InPlaceInitT, Args&&... args)

Construct optional object in place.

Constructs the value by passing args to its constructor in-place.

template<class T>
Corrade::Containers::Optional<T>::~Optional()

Destructor.

If the optional object is not empty, calls destructor on stored value.

template<class T>
Corrade::Containers::Optional<T>::operator bool() const explicit

Whether the optional object has a value.

Returns true if the optional object has a value, false otherwise.

template<class T>
Optional<T>& Corrade::Containers::Optional<T>::operator=(const Optional<T>& other)

Copy assignment.

If the object already contains a value, calls its destructor. Copy-constructs the value from other using placement-new.

template<class T>
Optional<T>& Corrade::Containers::Optional<T>::operator=(Optional<T>&& other)

Move assignment.

If both objects contain a value, the value is swapped. Otherwise, if the object contains a value, calls its destructor. If other contains a value, move-constructs the value from it using placement new.

template<class T>
bool Corrade::Containers::Optional<T>::operator==(const Optional<T>& other) const

Equality comparison to another optional.

Returns true if either both instances are empty or both instances have a value and the values compare equal, false otherwise.

template<class T>
bool Corrade::Containers::Optional<T>::operator!=(const Optional<T>& other) const

Non-equality comparison to another optional.

Returns negation of operator==(const Optional<T>&) const.

template<class T>
bool Corrade::Containers::Optional<T>::operator==(NullOptT) const

Equality comparison to a null optional.

Returns true if the instance is empty, false otherwise.

template<class T>
bool Corrade::Containers::Optional<T>::operator!=(NullOptT) const

Non-equality comparison to a null optional.

Returns true if the instance has a value, false otherwise.

template<class T>
bool Corrade::Containers::Optional<T>::operator==(const T& other) const

Equality comparison to a value.

Returns true if the instance has a value which compares equal to other, false otherwise.

template<class T>
bool Corrade::Containers::Optional<T>::operator!=(const T& other) const

Non-equality comparison to a value.

Returns negation of operator!=(const T&) const.

template<class T>
T* Corrade::Containers::Optional<T>::operator->()

Access the stored object.

Expects that the optional object has a value.

template<class T>
const T* Corrade::Containers::Optional<T>::operator->() const

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

template<class T>
T& Corrade::Containers::Optional<T>::operator*()

Access the stored object.

Expects that the optional object has a value.

template<class T>
const T& Corrade::Containers::Optional<T>::operator*() const

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

template<class T>
T& Corrade::Containers::Optional<T>::value()

Access the stored object.

template<class T>
const T& Corrade::Containers::Optional<T>::value() const

Access the stored object.

template<class T> template<class ... Args>
T& Corrade::Containers::Optional<T>::emplace(Args&&... args)

Emplace a new value.

If the object already contains a value, calls its destructor. Constructs the value by passing args to its constructor using placement new.

template<class T> template<class T>
bool operator==(NullOptT, const Optional<T>& b)

Equality comparison of a null optional and an optional.

See Optional::operator==(NullOptT) const for more information.

template<class T> template<class T>
bool operator!=(NullOptT, const Optional<T>& b)

Non-euality comparison of a null optional and an optional.

See Optional::operator!=(NullOptT) const for more information.

template<class T> template<class T>
bool operator==(const T& a, const Optional<T>& b)

Equality comparison of a value and an optional.

See Optional::operator==(const T&) const for more information.

template<class T> template<class T>
bool operator!=(const T& a, const Optional<T>& b)

Non-equality comparison of a value and an optional.

See Optional::operator!=(const T&) const for more information.

template<class T> template<class T>
Optional<typename std::decay<T>::type> optional(T&& value)

Make an optional.

Convenience alternative to Optional::Optional(const T&) or Optional::Optional(T&&). The following two lines are equivalent:

std::string value;

auto a = Containers::Optional<std::string>{value};
auto b = Containers::optional(value);

template<class T>
Utility::Debug& operator<<(Utility::Debug& debug, NullOptT)

Debug output operator

template<class T> template<class T>
Utility::Debug& operator<<(Utility::Debug& debug, const Optional<T>& value)

Debug output operator