Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go

Idiom #363 Set to list

Create the list y from the set x.

The resulting list y may be in any order.

import "maps"
import "slices"
y := slices.Collect(maps.Keys(x))

These generic functions work for any comparable type T
y := make([]T, 0, len(x))
for v := range x {
	y = append(y, v)
}

x is a map[T]struct{}

T is the type of the items
fgl
Type
  TSet = set of T;
  TList = specialize TFPGList<T>;
var
  x: TSet;
  y: TList;
  item: T;
begin
...
  y := TList.Create;
  for item in x do y.Add(item);
...

Type T is the type of the items in set x

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