scnlib
scnlib copied to clipboard
Explore scanning at compile-time
Perhaps CTRE-esque
int i;
scn::scan<"{}">(stream, i);
Or do we only limit ourselves to compile-time format string checking (fmt-esque):
int i;
scn::scan(stream, SCN_STRING("{}"), i);