Commit 250974f7 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 3a02d872
......@@ -109,6 +109,13 @@ func (A *RangedKeySet) DifferenceInplace(B *RangedKeySet) {
}
// --------
// verify checks RangedKeySet for internal consistency.
func (S *RangedKeySet) verify() {
S.m.verify()
}
// Clone returns copy of the set.
func (orig *RangedKeySet) Clone() *RangedKeySet {
return &RangedKeySet{orig.m.Clone()}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment