...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
namespace boost { Â Â template<typename T, std::size_t N> class array; Â Â template<typename T, std::size_t N> void swap(array<T, N>&, array<T, N>&); Â Â template<typename T, std::size_t N> Â Â Â Â bool operator==(const array<T, N>&, const array<T, N>&); Â Â template<typename T, std::size_t N> Â Â Â Â bool operator!=(const array<T, N>&, const array<T, N>&); Â Â template<typename T, std::size_t N> Â Â Â Â bool operator<(const array<T, N>&, const array<T, N>&); Â Â template<typename T, std::size_t N> Â Â Â Â bool operator>(const array<T, N>&, const array<T, N>&); Â Â template<typename T, std::size_t N> Â Â Â Â bool operator<=(const array<T, N>&, const array<T, N>&); Â Â template<typename T, std::size_t N> Â Â Â Â bool operator>=(const array<T, N>&, const array<T, N>&); }
Copyright © 2001-2004 Nicolai M. Josuttis |