tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
size_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_SIZE_T_HPP
5#define TETL_CSTDDEF_SIZE_T_HPP
6
7#include <etl/_config/all.hpp>
8
9namespace etl {
10
11/// \brief etl::size_t is the unsigned integer type of the result of the sizeof
12/// operator.
13///
14/// https://en.cppreference.com/w/cpp/types/size_t
15using size_t = TETL_BUILTIN_SIZET;
16
17} // namespace etl
18
19#endif // TETL_CSTDDEF_SIZE_T_HPP
Definition adjacent_find.hpp:9