Logo

Programming-Idioms

History of Idiom 172 > diff from v7 to v8

Edit summary for version 8 by Bart:
New Pascal implementation by user [Bart]

Version 7

2018-09-24, 18:17:34

Version 8

2019-01-06, 16:39:27

Idiom #172 Insert entry in map

Insert value v for key k in map m.

Idiom #172 Insert entry in map

Insert value v for key k in map m.

Extra Keywords
associative
Extra Keywords
associative
Imports
fgl
Code
m.KeyData[k] := v;
Comments bubble
m is a specilazed type of the generic TFPGMap<TKey,TData> prototype.