Files
yoga/yoga/enums/YogaEnums.h
Nick Gerleman e85cb99267 C++ style enums 3/N: ExperimentalFeature
Differential Revision: D49269440

fbshipit-source-id: 17582f27ed995f861deeed6bcb0c0a00d12da47e
2023-09-14 20:50:01 -07:00

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