Home | History | Annotate | Download | only in array

Lines Matching refs:Array

10 // <array>
12 // bool operator==(array<T, N> const&, array<T, N> const&);
13 // bool operator!=(array<T, N> const&, array<T, N> const&);
14 // bool operator<(array<T, N> const&, array<T, N> const&);
15 // bool operator<=(array<T, N> const&, array<T, N> const&);
16 // bool operator>(array<T, N> const&, array<T, N> const&);
17 // bool operator>=(array<T, N> const&, array<T, N> const&);
20 #include <array>
26 // std::array is explicitly allowed to be initialized with A a = { init-list };.
30 template <class Array>
31 void test_compare(const Array& LHS, const Array& RHS) {
32 typedef std::vector<typename Array::value_type> Vector;
49 typedef std::array<T, 3> C;
57 typedef std::array<T, 3> C;
65 typedef std::array<T, 0> C;