gen (v4)Optional typewritersHere are a few optional typewriters I’ve created. They are not built into SetTo add:
To use:
Implements a strongly-typed set with common operations (Union, Difference, etc). Items stored within it are unordered and unique. The implementation is based on github.com/deckarep/golang-set, with permission. API documentation is available here. Parameters and return values that would be ListTo add:
To use:
Implements a strongly-typed, doubly-linked list, based on golang.org/pkg/container/list. API documentation is available at that link. Parameters and return values that would be interface{} in the golang implementation will instead use your type in the gen implementation. RingTo add:
To use:
Implements strongly-typed operations on circular lists, based on golang.org/pkg/container/ring. API documentation is available at that link. Parameters and return values that would be interface{} in the golang implementation will instead use your type in the gen implementation. |