Searched defs:nasty_vector (Results 1 – 1 of 1) sorted by relevance
39 nasty_vector() : v_() {} in nasty_vector() function40 explicit nasty_vector(size_type n) : v_(n) {} in nasty_vector() function41 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} in nasty_vector() function42 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector() function44 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector() function