Searched defs:is_not_full (Results 1 – 3 of 3) sorted by relevance
58 bool is_not_full() const { return m_unread < m_container.capacity(); } in is_not_full() function in bounded_buffer101 bool is_not_full() const { return m_container.size() < m_container.capacity(); } in is_not_full() function in bounded_buffer_space_optimized143 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_deque_based186 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_list_based
60 bool is_not_full() const { return m_unread < m_container.capacity(); } in is_not_full() function in bounded_buffer