Logo

Programming-Idioms

  • Dart
  • Go
  • Python

Idiom #366 Test for set equality

Set b to true if the sets s and t have the same elements, false otherwise.

b = s == t
import "maps"
b := maps.Equal(s, t)

s and t must be implemented using the same type of map.
import java.util.Set;
boolean b = s.equals(t);

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