Searched defs:static_vector (Results 1 – 4 of 4) sorted by relevance
40 struct static_vector : sequence_container_interface< struct66 static_vector() noexcept : size_(0) {} in static_vector() argument67 explicit static_vector(size_type n) : size_(0) { resize(n); } in static_vector() argument68 explicit static_vector(size_type n, T const & x) : size_(0) in static_vector() argument79 static_vector(InputIterator first, InputIterator last) : size_(0) in static_vector() argument83 static_vector(std::initializer_list<T> il) : in static_vector() function86 static_vector(static_vector const & other) : size_(0) in static_vector() argument90 static_vector(static_vector && other) noexcept( in static_vector() function100 static_vector & operator=(static_vector const & other) in operator =() argument106 static_vector & operator=(static_vector && other) noexcept(noexcept( in operator =() argument[all …]
150 class static_vector class200 BOOST_CONTAINER_FORCEINLINE static_vector() BOOST_NOEXCEPT_OR_NOTHROW in static_vector() function in boost::container::static_vector215 BOOST_CONTAINER_FORCEINLINE explicit static_vector(size_type count) in static_vector() function in boost::container::static_vector233 BOOST_CONTAINER_FORCEINLINE static_vector(size_type count, default_init_t) in static_vector() function in boost::container::static_vector249 BOOST_CONTAINER_FORCEINLINE static_vector(size_type count, value_type const& value) in static_vector() function in boost::container::static_vector268 BOOST_CONTAINER_FORCEINLINE static_vector(Iterator first, Iterator last) in static_vector() function in boost::container::static_vector285 BOOST_CONTAINER_FORCEINLINE static_vector(std::initializer_list<value_type> il) in static_vector() function in boost::container::static_vector299 BOOST_CONTAINER_FORCEINLINE static_vector(static_vector const& other) in static_vector() function in boost::container::static_vector303 BOOST_CONTAINER_FORCEINLINE static_vector(static_vector const& other, const allocator_type &) in static_vector() function in boost::container::static_vector307 …BOOST_CONTAINER_FORCEINLINE static_vector(BOOST_RV_REF(static_vector) other, const allocator_type… in static_vector() function in boost::container::static_vector[all …]
26 template class boost::container::static_vector<int, 10>; member in boost::container::boost::container
15 template struct static_vector<int, 1024>; variable