Bug 1936278 - Prevent search mode chiclet from being dismissed when clicking in page...
[gecko.git] / dom / canvas / IsEnumCase.h
blob3ae869b153c9f61973af350452d4744cc01f12a9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef MOZILLA_DOM_ISENUMCASE_H
7 #define MOZILLA_DOM_ISENUMCASE_H
9 #include <optional>
10 #include <type_traits>
12 namespace mozilla {
14 template <class T>
15 bool IsEnumCase(T);
17 template <class E>
18 inline constexpr std::optional<E> AsEnumCase(
19 const std::underlying_type_t<E> raw) {
20 const auto ret = static_cast<E>(raw);
21 if (!IsEnumCase(ret)) return {};
22 return ret;
25 } // namespace mozilla
27 #endif