Sha256: 8fef79f3b412338ce9d7561e174b673cd62aaca76664f7fa71df408bb349db89
Contents?: true
Size: 683 Bytes
Versions: 34
Compression:
Stored size: 683 Bytes
Contents
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ #ifndef TAO_JSON_PEGTL_INTERNAL_IDENTIFIER_HPP #define TAO_JSON_PEGTL_INTERNAL_IDENTIFIER_HPP #include "../config.hpp" #include "peek_char.hpp" #include "ranges.hpp" #include "seq.hpp" #include "star.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { using identifier_first = ranges< peek_char, 'a', 'z', 'A', 'Z', '_' >; using identifier_other = ranges< peek_char, 'a', 'z', 'A', 'Z', '0', '9', '_' >; using identifier = seq< identifier_first, star< identifier_other > >; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
34 entries across 34 versions & 1 rubygems