/ returns the amount of memory currently allocated to the buffer in bytes
| 105 | /*****************************************************/ |
| 106 | // returns the amount of memory currently allocated to the buffer in bytes |
| 107 | size_t size_in_bytes() |
| 108 | { |
| 109 | return (memory_size_including_cookies - 2 * cookie_size) * sizeof(T); |
| 110 | } |
| 111 | |
| 112 | /*****************************************************/ |
| 113 | // N.B. memory will be cleared after this |
nothing calls this directly
no outgoing calls
no test coverage detected