CNL  2.0.2 (development)
Compositional Numeric Library
ssizeof.h
1 
2 // Copyright John McFarlane 2021.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_SSIZEOF_H)
8 #define CNL_IMPL_SSIZEOF_H
9 
10 #include "narrow_cast.h"
11 
12 namespace cnl::_impl {
13  template<typename T>
14  [[nodiscard]] inline constexpr auto ssizeof() noexcept
15  {
16  return narrow_cast<int>(sizeof(T));
17  }
18 
19  template<typename T>
20  [[nodiscard]] inline constexpr auto ssizeof(T const&) noexcept
21  {
22  return narrow_cast<int>(sizeof(T));
23  }
24 }
25 
26 #endif // CNL_IMPL_SSIZEOF_H