~ubuntu-branches/ubuntu/trusty/golang-go-systemd/trusty-proposed

« back to all changes in this revision

Viewing changes to dbus/set.go

  • Committer: Package Import Robot
  • Author(s): Tianon Gravi
  • Date: 2014-05-08 09:48:52 UTC
  • Revision ID: package-import@ubuntu.com-20140508094852-0csgkii3h2wjlitj
Tags: upstream-1
ImportĀ upstreamĀ versionĀ 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package dbus
 
2
 
 
3
type set struct {
 
4
        data map[string]bool
 
5
}
 
6
 
 
7
func (s *set) Add(value string) {
 
8
        s.data[value] = true
 
9
}
 
10
 
 
11
func (s *set) Remove(value string) {
 
12
        delete(s.data, value)
 
13
}
 
14
 
 
15
func (s *set) Contains(value string) (exists bool) {
 
16
        _, exists = s.data[value]
 
17
        return
 
18
}
 
19
 
 
20
func (s *set) Length() (int) {
 
21
        return len(s.data)
 
22
}
 
23
 
 
24
func (s *set) Values() (values []string) {
 
25
         for val, _ := range s.data {
 
26
                values = append(values, val)
 
27
         }
 
28
         return
 
29
}
 
30
 
 
31
func newSet() (*set) {
 
32
        return &set{make(map[string] bool)}
 
33
}