Logo

Programming-Idioms

History of Idiom 109 > diff from v16 to v17

Edit summary for version 17 by arouene:
New Cpp implementation by user [arouene]

Version 16

2019-03-07, 18:06:10

Version 17

2019-09-27, 12:40:30

Idiom #109 Number of bytes of a type

Set n to the number of bytes of a variable t (of type T).

Idiom #109 Number of bytes of a type

Set n to the number of bytes of a variable t (of type T).

Imports
#include <cstddef>
Code
std::size_t n = sizeof(t);