Assign operations
| 726 | |
| 727 | // Assign operations |
| 728 | void assign(fl::size count, const T& value) { |
| 729 | clear(); |
| 730 | ensure_capacity(count); |
| 731 | for (fl::size i = 0; i < count; ++i) { |
| 732 | push_back(value); |
| 733 | } |
| 734 | } |
| 735 | |
| 736 | // Comparison operators |
| 737 | bool operator==(const deque& other) const { |