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 forrand()
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
andfrom_chars
(for integral values) from P0682R1 - An implementation of
scope_guard
from P0052R5