ClickHouse/libs/libcommon/include/ext/size.hpp

15 lines
383 B
C++
Raw Normal View History

2015-11-17 13:25:36 +00:00
#pragma once
#include <cstdlib>
namespace ext
{
/** \brief Returns number of elements in an automatic array. */
template <typename T, std::size_t N>
constexpr std::size_t size(const T (&)[N]) noexcept { return N; }
/** \brief Returns number of in a container providing size() member function. */
2015-11-17 13:25:36 +00:00
template <typename T> constexpr auto size(const T & t) { return t.size(); }
}