Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 345 Bytes

README.md

File metadata and controls

9 lines (8 loc) · 345 Bytes

###Circular Buffer

Features:

  • Basic implementation, with member functions including push_back, pop_front, clear, is_empty, capacity, size
  • Implemented move semantics from C++11
  • Added print_buffer function for debugging purposes
  • Fixed size upon construction
  • Allows overwrite when buffer is full
  • Templated to take generic value types