10#ifndef MSGPACK_V1_TYPE_DEQUE_HPP
11#define MSGPACK_V1_TYPE_DEQUE_HPP
28#if !defined(MSGPACK_USE_CPP03)
30template <
typename T,
typename Alloc>
31struct as<std::deque<T, Alloc>, typename std::enable_if<msgpack::has_as<T>::value>::type> {
34 std::deque<T, Alloc> v;
39 v.push_back(p->
as<T>());
49template <
typename T,
typename Alloc>
56 typename std::deque<T, Alloc>::iterator it = v.begin();
57 for(; p < pend; ++p, ++it) {
64template <
typename T,
typename Alloc>
65struct pack<std::deque<T, Alloc> > {
66 template <
typename Stream>
70 for(
typename std::deque<T, Alloc>::const_iterator it(v.begin()), it_end(v.end());
78template <
typename T,
typename Alloc>
81 o.
type = msgpack::type::ARRAY;
91 typename std::deque<T, Alloc>::const_iterator it(v.begin());
The class template that supports continuous packing.
Definition pack.hpp:33
packer< Stream > & pack_array(uint32_t n)
Packing array header and size.
Definition pack.hpp:1195
packer< Stream > & pack(const T &v)
Packing function template.
Definition object_fwd.hpp:231
void * allocate_align(size_t size, size_t align=MSGPACK_ZONE_ALIGN)
Definition cpp03_zone.hpp:255
Definition adaptor_base.hpp:15
uint32_t checked_get_container_size(T size)
Definition check_container_size.hpp:55
std::deque< T, Alloc > operator()(const msgpack::object &o) const
Definition deque.hpp:32
Definition object_fwd_decl.hpp:61
msgpack::object const & operator()(msgpack::object const &o, std::deque< T, Alloc > &v) const
Definition deque.hpp:51
Definition adaptor_base.hpp:27
void operator()(msgpack::object::with_zone &o, const std::deque< T, Alloc > &v) const
Definition deque.hpp:80
Definition adaptor_base.hpp:43
msgpack::packer< Stream > & operator()(msgpack::packer< Stream > &o, const std::deque< T, Alloc > &v) const
Definition deque.hpp:67
Definition adaptor_base.hpp:32
msgpack::zone & zone
Definition object.hpp:37
uint32_t size
Definition object_fwd.hpp:23
msgpack::object * ptr
Definition object_fwd.hpp:24
Object class that corresponding to MessagePack format object.
Definition object_fwd.hpp:75
msgpack::enable_if<!msgpack::is_array< T >::value &&!msgpack::is_pointer< T >::value, T & >::type convert(T &v) const
Convert the object.
Definition object.hpp:1076
std::enable_if< msgpack::has_as< T >::value, T >::type as() const
Get value as T.
Definition object.hpp:1126
union_type via
Definition object_fwd.hpp:93
msgpack::type::object_type type
Definition object_fwd.hpp:92
msgpack::object_array array
Definition object_fwd.hpp:85
#define MSGPACK_NULLPTR
Definition cpp_config_decl.hpp:85
#define MSGPACK_ZONE_ALIGNOF(type)
Definition cpp03_zone_decl.hpp:30
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition versioning.hpp:66