An open API service indexing awesome lists of open source software.

https://github.com/tada-team/setof

String sets.
https://github.com/tada-team/setof

Last synced: 23 days ago
JSON representation

String sets.

Awesome Lists containing this project

README

          

# Sets

```go
import "setof"

func main() {
s := setof.NewStrings("aaa", "bbb", "aaa")
print(len(s)) // 2
s.Update("ccc", "444")
print(s.Contains("123")) // false
print(s.Contains("aaa")) // true
}
```