lwwset This is a thread safe implementation of a Last-Write-Wins-Element-Set with a bias towards removals. Example usage s := lwwset.New() s.Add('a') ok := s.Lookup('a') if ok { fmt.Println("we found it in the set") }