Constructor with memory resource
| 495 | |
| 496 | // Constructor with memory resource |
| 497 | explicit vector(memory_resource* resource) FL_NOEXCEPT |
| 498 | : vector_basic(sizeof(T), resource, vector_element_ops_for<T>()) {} |
| 499 | |
| 500 | // Constructor with size and value |
| 501 | vector(fl::size count, const T &value = T()) FL_NOEXCEPT |