explicit forward_list(const Allocator&);
Effects: Constructs an empty forward_list object using the specified allocator.
explicit forward_list(size_type n, const Allocator& = Allocator());
Effects: Constructs a forward_list object with n default-inserted elements using the specified allocator.
Requires: T shall be DefaultInsertable into *this.
forward_list(size_type n, const T& value, const Allocator& = Allocator());
Effects: Constructs a forward_list object with n copies of value using the specified allocator.
Requires: T shall be CopyInsertable into *this.
template <class InputIterator> forward_list(InputIterator first, InputIterator last, const Allocator& = Allocator());
Effects: Constructs a forward_list object equal to the range [first,last).
Complexity: Linear in distance(first, last).
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4