|
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator+ (const Vector< T, Allocator > &op1, const T &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator+ (const T &op1, const Vector< T, Allocator > &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator+ (const Vector< T, Allocator > &op1, const Vector< T, Allocator > &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator- (const Vector< T, Allocator > &op1, const T &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator- (const T &op1, const Vector< T, Allocator > &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator- (const Vector< T, Allocator > &op1, const Vector< T, Allocator > &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator* (const Vector< T, Allocator > &op1, const T &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator* (const T &op1, const Vector< T, Allocator > &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator* (const Vector< T, Allocator > &op1, const Vector< T, Allocator > &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator/ (const Vector< T, Allocator > &op1, const T &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator/ (const T &op1, const Vector< T, Allocator > &op2) |
| |
| template<typename T , typename Allocator > |
| Vector< T, Allocator > | operator/ (const Vector< T, Allocator > &op1, const Vector< T, Allocator > &op2) |
| |
| template<typename T , typename Allocator > |
| auto | count (const Vector< T, Allocator > &vec, const T &val) |
| |
| template<typename T , typename Allocator , typename UnaryPredicate > |
| auto | count_if (const Vector< T, Allocator > &vec, UnaryPredicate p) |
| |
| template<typename T , typename Allocator > |
| void | fill_n (Vector< T, Allocator > &vec, size_t n, const T &val) |
| |
| template<typename T , typename Allocator > |
| void | fill (Vector< T, Allocator > &vec, const T &val) |
| |
| template<typename T , typename Allocator > |
| void | sort (Vector< T, Allocator > &vec) |
| |