blob: 700c2a2153ab9089178d2cbd6123a023854880d9 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This file was auto-generated via go generate.
// DO NOT UPDATE MANUALLY
package set
var Uint8 = Uint8T{}
type Uint8T struct{}
// FromSlice transforms the given slice to a set.
func (Uint8T) FromSlice(els []uint8) map[uint8]struct{} {
if len(els) == 0 {
return nil
}
result := map[uint8]struct{}{}
for _, el := range els {
result[el] = struct{}{}
}
return result
}
// ToSlice transforms the given set to a slice.
func (Uint8T) ToSlice(s map[uint8]struct{}) []uint8 {
var result []uint8
for el, _ := range s {
result = append(result, el)
}
return result
}
// Difference subtracts s2 from s1, storing the result in s1.
func (Uint8T) Difference(s1, s2 map[uint8]struct{}) {
for el, _ := range s1 {
if _, ok := s2[el]; ok {
delete(s1, el)
}
}
}
// Intersection intersects s1 and s2, storing the result in s1.
func (Uint8T) Intersection(s1, s2 map[uint8]struct{}) {
for el, _ := range s1 {
if _, ok := s2[el]; !ok {
delete(s1, el)
}
}
}
// Union merges s1 and s2, storing the result in s1.
func (Uint8T) Union(s1, s2 map[uint8]struct{}) {
for el, _ := range s2 {
s1[el] = struct{}{}
}
}