Logo

Programming-Idioms

  • Rust
  • Go

Idiom #313 Test for map equality

Set b to true if the maps m and n have the same key/value entries, false otherwise.

import "maps"
b := maps.Equal(m, n)

maps.Equal is generic and type-safe at compile time.
#include <map>
b = m == n;

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