Lines Matching refs:container

3406     /// @brief a minimal map-like container that preserves insertion order
5238 /// the container to iterate
5239 typename IteratorType::pointer container = nullptr;
5244 /// construct iteration proxy from a container
5246 : container(&cont) {}
5257 return iteration_proxy_value<IteratorType>(container->begin());
5263 return iteration_proxy_value<IteratorType>(container->end());
6457 // Convenience shorthand from container to iterator
6458 // Enables ADL on begin(container) and end(container)
6476 static adapter_type create(const ContainerType& container)
6478 return input_adapter(begin(container), end(container));
6485 typename container_input_adapter_factory_impl::container_input_adapter_factory<ContainerType>::adapter_type input_adapter(const ContainerType& container)
6487 return container_input_adapter_factory_impl::container_input_adapter_factory<ContainerType>::create(container);
7141 // container
9852 // use binary subtype and store in binary container
11113 exception_message(input_format, "count in an optimized container must be positive", "size"), nullptr));
11129 exception_message(input_format, "count in an optimized container must be positive", "size"), nullptr));
11145 exception_message(input_format, "count in an optimized container must be positive", "size"), nullptr));
11161 exception_message(input_format, "count in an optimized container must be positive", "size"), nullptr));
11244 for (auto i : dim) // test if any dimension in an ndarray is 0, if so, return a 1D empty container
11296 @brief determine the type and size for a container
16417 @brief determine the type prefix of container values
18905 /// ordered_map: a minimal map-like container that preserves insertion order
19373 // container types //
19376 /// @name container types
19377 /// The canonic container types to use @ref basic_json like any other STL
19378 /// container.
19381 /// the type of elements in a basic_json container
19391 /// a type to represent container sizes
19402 /// an iterator for a basic_json container
19404 /// a const iterator for a basic_json container
19406 /// a reverse iterator for a basic_json container
19408 /// a const reverse iterator for a basic_json container
19414 /// @brief returns the allocator associated with the container
19843 container's elements must have the current value as parent.
20068 /// @brief create a container (array or object) from an initializer list
20193 /// @brief construct a JSON container given an iterator range
22073 /// @brief checks whether the container is empty.
22524 JSON_THROW(invalid_iterator::create(211, "passed iterators may not belong to container", this));