blob: 7b2c54713d157e209eb55c25b24030af08abfbfe [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef LIB_ESCHER_UTIL_ENUM_COUNT_H_
#define LIB_ESCHER_UTIL_ENUM_COUNT_H_
#include <cstddef>
namespace escher {
// Return the number of elements in an enum, which must properly define
// kEnumCount: they should start at zero and monotonically increase by 1,
// so that kEnumCount is equal to the number of previous values in the enum.
template <typename E>
constexpr size_t EnumCount() {
return static_cast<size_t>(E::kEnumCount);
}
} // namespace escher
#endif // LIB_ESCHER_UTIL_ENUM_COUNT_H_