Differential Revision: D49269440 fbshipit-source-id: 17582f27ed995f861deeed6bcb0c0a00d12da47e
19 lines
395 B
C++
19 lines
395 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace facebook::yoga {
|
|
|
|
template <typename EnumT>
|
|
constexpr inline int32_t ordinalCount();
|
|
|
|
template <typename EnumT>
|
|
constexpr inline int32_t bitCount();
|
|
|
|
} // namespace facebook::yoga
|