Home
last modified time | relevance | path

Searched defs:nasty_vector (Results 1 – 1 of 1) sorted by relevance

/llvm-project/libcxx/test/support/
H A Dnasty_containers.h39 nasty_vector() : v_() {} in nasty_vector() function
40 explicit nasty_vector(size_type n) : v_(n) {} in nasty_vector() function
41 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} in nasty_vector() function
42 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector() function
44 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector() function