tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
nullptr_t.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_CSTDDEF_NULLPTR_T_HPP
5#define TETL_CSTDDEF_NULLPTR_T_HPP
6
7namespace etl {
8
9/// \brief etl::nullptr_t is the type of the null pointer literal, nullptr. It
10/// is a distinct type that is not itself a pointer type or a pointer to member
11/// type.
12///
13/// https://en.cppreference.com/w/cpp/types/nullptr_t
14using nullptr_t = decltype(nullptr);
15
16} // namespace etl
17
18#endif // TETL_CSTDDEF_NULLPTR_T_HPP
Definition adjacent_find.hpp:9