aboutsummaryrefslogtreecommitdiff
path: root/README.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
* s/List/Vector/gEuAndreh2025-01-221-31/+31
|
* link badge to pkg.go.devAlexander Stefurishin2023-08-171-1/+1
|
* Fix typo in README NewMap -> NewSetJoe Taber2023-02-241-1/+1
|
* Update documentationOskar Haarklou Veileborg2023-01-181-2/+2
|
* Ensure immutability of sets (and maps with SetMany)Oskar Haarklou Veileborg2023-01-091-2/+2
|
* Fix SortedSet.Set. NewMapOf. docsAm Laher2022-12-281-1/+24
|
* readme updates for latest changesAm Laher2022-12-221-18/+9
|
* Remove references to []byte keys in READMEPaul Banks2022-10-051-12/+19
| | | | | | | #23 added generic support (which is awesome) but noted the breaking change about no longer supporting `[]byte` keys due to the `Ordered` constraint. Ideally, this library would continue to support `[]byte` keys and use a custom interface to constrain key types instead. But until that happens, the README right now is a bit surprising as it talks explicitly about supporting `[]byte` keys still but they are actually a compile error! Here's a drive-by fix for the README for now - I _think_ I caught all the incorrect statements.
* revert fork-related readme contentAm Laher2022-06-111-17/+0
|
* update readmeAmir Laher2022-05-191-17/+34
|
* Fix MapBuilder docsBen Johnson2021-06-011-1/+1
|
* Refactor buildersBen Johnson2020-11-171-5/+3
| | | | | | | This commit fixes a bug in builders that caused changes to leak when building on existing collections. The builders now only work on empty list & map types and are marked as invalid after the underlying collection has been retrieved from them.
* GitHub Actions tweaksBen Johnson2020-09-231-1/+1
|
* READMEBen Johnson2020-09-231-1/+1
| | | Updating badges
* README Ben Johnson2020-09-231-12/+15
| | | Update docs to reflect new `Hasher` & `Comparer` types.
* Remove CircleCIBen Johnson2020-09-221-1/+1
|
* READMEBen Johnson2019-03-061-2/+2
| | | Change hasher & comparer implementations to unexported in README.
* Add SortedMapBuilderBen Johnson2019-03-061-1/+2
| | | | This commit adds an efficient builder for creating SortedMap objects.
* Add MapBuilderBen Johnson2019-03-061-0/+21
| | | | | This commit provides a `MapBuilder` for efficiently combining multiple `Map` mutations.
* Add ListBuilder.Ben Johnson2019-03-041-0/+21
| | | | | | | | This commit adds a builder for more efficiently creating `List` objects. It works by mutating the list in-place until the current list is requested. After that request, the next mutation will occur on a copy but then continue to mutate in place. This allows lists to be returned and used while continuing to use the builder.
* Add code coverage badge.Ben Johnson2019-03-011-1/+1
|
* Add CircleCI statusBen Johnson2019-03-011-1/+1
|
* (no commit message)Ben Johnson2019-03-011-0/+257