Sha256: c6fb2f639af87e9d867cf5aaf760f1da4af820f1a521b8fee3caeb73e904b04c
Contents?: true
Size: 524 Bytes
Versions: 24
Compression:
Stored size: 524 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_LIST_TAIL_HPP #define TAO_JSON_PEGTL_INTERNAL_LIST_TAIL_HPP #include "../config.hpp" #include "list.hpp" #include "opt.hpp" #include "seq.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { template< typename Rule, typename Sep > using list_tail = seq< list< Rule, Sep >, opt< Sep > >; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
24 entries across 24 versions & 1 rubygems