template struct Core::Portable::CrcLookupTable
Internal class for precomputing CRC lookup-tables in compile-time.
#include <corecrc.h> template <typename CrcType, CrcType polynomial> struct CrcLookupTable { // structs struct Table; // fields static constexpr Table table = generateTable(); // methods static constexpr Table generateTable(); };