xtd 0.2.0
optional.hpp
Go to the documentation of this file.
1
3#pragma once
5#define __XTD_STD_INTERNAL__
7#undef __XTD_STD_INTERNAL__
9
10#include <optional>
11
13namespace xtd {
24 template<class type_t>
25 using optional = std::optional<type_t>;
26}
Contains __xtd_std_version definitions.
std::optional< type_t > optional
Represents the optional alias on std::optional.
Definition optional.hpp:25
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8