Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 575 Bytes

README.md

File metadata and controls

9 lines (8 loc) · 575 Bytes

snippets

Bits of useful code that I write

  • array_view, a simple 1-D array view class. Requires C++14 constexpr support.
  • simple_rand, a replacement for rand() using the C++11 random number library.
  • An implementation of the byte type proposed in P0298. Requires C++1z.
  • An implementation of a circular_buffer container adapter. In progress.
  • An implementation of to_chars and from_chars (for integral values) from P0682R1
  • An implementation of scope_guard from P0052R5