Logo

Programming-Idioms

History of Idiom 117 > diff from v40 to v41

Edit summary for version 41 by Edward E.:
New Dart implementation by user [Edward E.]

Version 40

2017-11-14, 17:32:31

Version 41

2018-01-14, 07:05:18

Idiom #117 Get list size

Set n to the number of elements of list x.

Illustration

Idiom #117 Get list size

Set n to the number of elements of list x.

Illustration
Extra Keywords
length
Extra Keywords
length
Code
int n = x.length;