* returns the number of elements that can be held in the current * storage */
| 709 | * storage |
| 710 | */ |
| 711 | constexpr std::size_t capacity (void) const noexcept |
| 712 | { |
| 713 | return N; |
| 714 | } |
| 715 | |
| 716 | /* set the overwrite policy for the buffer */ |
| 717 | void set_overwrite_policy (enum overwrite_policy pol) noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected