Logo

Programming-Idioms

History of Idiom 109 > diff from v17 to v18

Edit summary for version 18 by daxim:
New Perl implementation by user [daxim]

Version 17

2019-09-27, 12:40:30

Version 18

2019-09-27, 23:39:23

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
use Devel::Size qw(total_size);
Code
my $n = total_size $t;
Doc URL
http://p3rl.org/Devel::Size