Logo

Programming-Idioms

History of Idiom 170 > diff from v10 to v11

Edit summary for version 11 by duser:
New D implementation by user [duser]

Version 10

2018-09-06, 19:55:45

Version 11

2018-09-21, 13:25:04

Idiom #170 Get map size

Set n to the number of elements stored in mymap.

This is not always equal to the map capacity.

Idiom #170 Get map size

Set n to the number of elements stored in mymap.

This is not always equal to the map capacity.

Extra Keywords
length count
Extra Keywords
length count
Code
const n = mymap.length;
Comments bubble
length is one of the property of D builtin map type.
Doc URL
https://dlang.org/spec/hash-map.html#properties