Sha256: 95cc7aaeaa8958a08f2a5da36ac4a89125c3b3686afbb3cf8a84509c35251190
Contents?: true
Size: 471 Bytes
Versions: 24
Compression:
Stored size: 471 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_ALNUM_HPP #define TAO_JSON_PEGTL_INTERNAL_ALNUM_HPP #include "../config.hpp" #include "peek_char.hpp" #include "ranges.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { using alnum = ranges< peek_char, 'a', 'z', 'A', 'Z', '0', '9' >; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
24 entries across 24 versions & 1 rubygems