2016-08-16 16:36:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
#ifndef SkEnumOperators_DEFINED
|
|
|
|
#define SkEnumOperators_DEFINED
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
#include <type_traits>
|
2016-08-16 16:36:23 +00:00
|
|
|
|
|
|
|
namespace skstd {
|
|
|
|
template <typename T> struct is_bitmask_enum : std::false_type {};
|
2019-08-07 14:59:27 +00:00
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
template <typename E>
|
|
|
|
typename std::enable_if<skstd::is_bitmask_enum<E>::value, bool>::type constexpr Any(E e) {
|
2019-08-07 14:59:27 +00:00
|
|
|
return static_cast<typename std::underlying_type<E>::type>(e) != 0;
|
|
|
|
}
|
2019-08-29 14:39:22 +00:00
|
|
|
} // namespace skstd
|
2016-08-16 16:36:23 +00:00
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
template <typename E>
|
|
|
|
typename std::enable_if<skstd::is_bitmask_enum<E>::value, E>::type constexpr operator|(E l, E r) {
|
2019-02-04 15:03:04 +00:00
|
|
|
using U = typename std::underlying_type<E>::type;
|
2016-08-16 16:36:23 +00:00
|
|
|
return static_cast<E>(static_cast<U>(l) | static_cast<U>(r));
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
template <typename E>
|
|
|
|
typename std::enable_if<skstd::is_bitmask_enum<E>::value, E&>::type constexpr operator|=(E& l, E r) {
|
2016-08-16 16:36:23 +00:00
|
|
|
return l = l | r;
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
template <typename E>
|
|
|
|
typename std::enable_if<skstd::is_bitmask_enum<E>::value, E>::type constexpr operator&(E l, E r) {
|
2019-02-04 15:03:04 +00:00
|
|
|
using U = typename std::underlying_type<E>::type;
|
2016-08-16 16:36:23 +00:00
|
|
|
return static_cast<E>(static_cast<U>(l) & static_cast<U>(r));
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
template <typename E>
|
|
|
|
typename std::enable_if<skstd::is_bitmask_enum<E>::value, E&>::type constexpr operator&=(E& l, E r) {
|
2016-08-16 16:36:23 +00:00
|
|
|
return l = l & r;
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
template <typename E>
|
|
|
|
typename std::enable_if<skstd::is_bitmask_enum<E>::value, E>::type constexpr operator~(E e) {
|
2019-08-07 14:59:27 +00:00
|
|
|
return static_cast<E>(~static_cast<typename std::underlying_type<E>::type>(e));
|
|
|
|
}
|
|
|
|
|
2016-08-16 16:36:23 +00:00
|
|
|
#endif // SkEnumOperators_DEFINED
|