HashCollection.set

Ensure a key exists (with the given value). When multi==true, replaces all previous entries with this key. Otherwise, behaves identically to add.

struct HashCollection(K, V, bool ordered, bool multi)
alias set = _addSetFunc!(AddMode.replace)

Meta