Add a bit to the end (initialized to 0)
| 529 | |
| 530 | /// Add a bit to the end (initialized to 0) |
| 531 | void push_back() FL_NOEXCEPT { |
| 532 | fl::u32 new_size = size() + 1; |
| 533 | resize(new_size); |
| 534 | } |
| 535 | |
| 536 | /// Emplace back - for consistency with other containers |
| 537 | template<typename... Args> |