Logo

Programming-Idioms

  • Java
  • Pascal

Idiom #330 Map to list

Create the list a containing all the values of the map m.

Ignore the keys of m. The order of a doesn't matter. a may contain duplicate values.

fgl
Type
  TMap = specialize TFPGMap<TKey, TData>;
  TList = specialize TFPGList<TData>;
var
  m: TMap;
  a: TList;

...
  a := TList.Create;
  for idx := 0 to m.count-1 do
    aList.Add(m.Data[idx]);
using System.Linq;
var a = m.Values.ToList();

New implementation...
< >
programming-idioms.org