removing LLM notes from README

This commit is contained in:
William Dillon 2025-11-28 13:04:26 -05:00
parent e2bc788886
commit 284e78fe19

View File

@ -101,16 +101,4 @@ go test ./... -v
```
The repository includes unit tests (`set_test.go`) demonstrating expected
behavior for union, intersection, difference, membership, and conversions.
## Notes
- Because the implementation uses `constraints.Ordered`, only ordered types are
supported (numbers, strings). If you need sets for non-ordered types (e.g.
structs) you can adapt the code to use `comparable` and provide a custom
ordering for `ToSortedSlice`.
- The `Equal` method uses `maps.Equal` from the standard library to compare
underlying maps.
If you'd like, I can update the README with an import path (module name),
add more examples for strings or custom types, or include benchmarks.
behavior for union, intersection, difference, membership, and conversions.