Logo

Programming-Idioms

  • Rust
  • D

Idiom #34 Create a set of objects

Declare and initialize a set x containing unique objects of type T.

import std.container: redBlackTree;
auto x = redBlackTree!T;

By default standard red-black trees don't accept duplicates, hence making great sets.
use std::collections::HashSet;
let x: HashSet<T> = HashSet::new();
#include <unordered_set>
std::unordered_set<T, hasher, eq> x;

Using a custom hasher and eq (equality checking function)

New implementation...