C++ Core Guidelines

The C++ Core Guidelines

The C++ Core Guidelines Support Library (GSL)

  • Bounds checking:
    • Herb Sutter video at CppCon 2015.
    • array_view: A view of a counted sequence of contiguous uniform elements. Incurs runtime overhead.
    • string_view: An array_view constrained to a single dimension.
Edit View