Sha256: 7c029292d817b072999215599f3d79e41b25d3ddd1b4c205e12db89020a68374
Contents?: true
Size: 544 Bytes
Versions: 34
Compression:
Stored size: 544 Bytes
Contents
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_CONTRIB_PAIR_TRAITS_HPP #define TAO_JSON_CONTRIB_PAIR_TRAITS_HPP #include <utility> #include "../binding.hpp" namespace tao::json { template< typename U, typename V > struct pair_traits : binding::array< TAO_JSON_BIND_ELEMENT( &std::pair< U, V >::first ), TAO_JSON_BIND_ELEMENT( &std::pair< U, V >::second ) > {}; } // namespace tao::json #endif
Version data entries
34 entries across 34 versions & 1 rubygems