From b307dfd88338917dccf1fb3f093119aa92403357 Mon Sep 17 00:00:00 2001 From: terik23 Date: Sat, 13 Jul 2019 19:06:29 +0500 Subject: [PATCH] update readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 60955ef..95b9724 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,8 @@ Header-only C++17 library provides static reflection for enums, work with any en * `enum_entries` obtains pair (value enum, string enum name) sequence. * `is_unscoped_enum` checks whether type is an [Unscoped enumeration](https://en.cppreference.com/w/cpp/language/enum#Unscoped_enumeration). * `is_scoped_enum` checks whether type is an [Scoped enumeration](https://en.cppreference.com/w/cpp/language/enum#Scoped_enumerations). +* `is_fixed_enum` checks whether type is an [Fixed enumeration](https://en.cppreference.com/w/cpp/language/enum). +* `underlying_type` port of C++20 improved UB-free "SFINAE-friendly" [std::underlying_type](https://en.cppreference.com/w/cpp/types/underlying_type). ## Features