Sha256: 46e28ca41755e8e16f32bc82ac345f1c3bfb613bd9e95afe6d5a2d92eeb979fd
Contents?: true
Size: 461 Bytes
Versions: 24
Compression:
Stored size: 461 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_ALPHA_HPP #define TAO_JSON_PEGTL_INTERNAL_ALPHA_HPP #include "../config.hpp" #include "peek_char.hpp" #include "ranges.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { using alpha = ranges< peek_char, 'a', 'z', 'A', 'Z' >; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
24 entries across 24 versions & 1 rubygems