Sha256: 5807a8c24014fc8910d4198187e0eadcd846e905f5f46882a0c447310873c238
Contents?: true
Size: 526 Bytes
Versions: 34
Compression:
Stored size: 526 Bytes
Contents
// Copyright (c) 2014-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ #ifndef TAO_JSON_PEGTL_INTERNAL_PAD_OPT_HPP #define TAO_JSON_PEGTL_INTERNAL_PAD_OPT_HPP #include "../config.hpp" #include "opt.hpp" #include "seq.hpp" #include "star.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { template< typename Rule, typename Pad > using pad_opt = seq< star< Pad >, opt< Rule, star< Pad > > >; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
34 entries across 34 versions & 1 rubygems