MCPcopy Index your code
hub / github.com/applejag/typ

github.com/applejag/typ @v4.4.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v4.4.0 ↗ · + Follow
544 symbols 1,656 edges 61 files 305 documented · 56%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

go-typ

Codacy Badge REUSE status Go Reference

Generic types and functions that are missing from Go, including sets, trees, linked lists, etc.

All code is implemented with 0 dependencies and in pure Go code (no CGo).

Background

Go v1.18 is about to be released now in February 2022, and with it comes some features that has been talked about for a really long time. One of which being generics! (Go 1.18 beta release notes)

They have moved generics from the Go v2.0 milestone over to Go v1.18, which means they have to stay backwards compatible and cannot alter any existing types. On top of this, they do not seem to plan on releasing any generic data types in the Go standard library until Go v1.19. All in all, to use generic data types with Go v1.18, you'll have to either write your own, or use a third-party package, like this one :)

This repository includes those generic functions and types that I find are missing from the release of Go v1.18-beta1, as well as a number of other data structures and utility functions I think should've been included in the standard library a long time ago. But now with generics, we can finally have sensible implementations of sets, trees, stacks, etc without excessive casting.

Compatibility

Requires Go v1.18rc1 or later as the code makes heavy use of generics.

Installation and usage

go get -u gopkg.in/typ.v4
import (
    "fmt"

    "gopkg.in/typ.v4/avl"
    "gopkg.in/typ.v4/maps"
)

func UsingSets() {
    set1 := make(maps.Set[string])
    set1.Add("A")
    set1.Add("B")
    set1.Add("C")
    fmt.Println("set1:", set1) // {A B C}

    set2 := make(maps.Set[string])
    set2.Add("B")
    set2.Add("C")
    set2.Add("D")
    fmt.Println("set2:", set2) // {B C D}

    fmt.Println("union:", set1.Union(set2))         // {A B C D}
    fmt.Println("intersect:", set1.Intersect(set2)) // {B C}
    fmt.Println("set diff:", set1.SetDiff(set2))    // {A}
    fmt.Println("sym diff:", set1.SymDiff(set2))    // {A D}
}

func UsingAVLTree() {
    tree := avl.NewOrdered[string]()

    // Unordered input
    tree.Add("E")
    tree.Add("B")
    tree.Add("D")
    tree.Add("C")
    tree.Add("A")

    // Sorted output
    fmt.Println(tree.Len(), tree) // 5 [A B C D E]
}

Features

  • gopkg.in/typ.v4/arrays:

  • arrays.Array2D[T]: 2-dimensional array.

  • gopkg.in/typ.v4/sync2:

  • sync2.AtomicValue[T]: Atomic value store, wrapper around sync/atomic.Value.

  • sync2.KeyedMutex[T]: Mutual exclusive lock on a per-key basis.
  • sync2.KeyedRWMutex[T]: Mutual exclusive reader/writer lock on a per-key basis.
  • sync2.Map[K,V]: Concurrent map, forked from sync.Map.
  • sync2.Set[V]: Concurrent set, based on sync2.Map.
  • sync2.Once1[R1]: Run action once, and tracks return values, wrapper around sync.Once.
  • sync2.Once2[R1,R2]: Run action once, and tracks return values, wrapper around sync.Once.
  • sync2.Once3[R1,R2,R3]: Run action once, and tracks return values, wrapper around sync.Once.
  • sync2.Pool[T]: Object pool, wrapper around sync.Pool.

  • gopkg.in/typ.v4/lists:

  • lists.List[T]: Linked list, forked from container/list.

  • lists.Queue[T]: First-in-first-out collection.
  • lists.Ring[T]: Circular list, forked from container/ring.
  • lists.Stack[T]: First-in-last-out collection.

  • gopkg.in/typ.v4/avl:

  • avl.Tree[T]: AVL-tree (auto-balancing binary search tree) implementation.

  • gopkg.in/typ.v4/chans:

  • chans.PubSub[T]: Publish-subscribe pattern using channels.

  • gopkg.in/typ.v4/maps:

  • maps.Bimap[K,V]: Bi-directional map.

  • maps.Set[V]: Set of distinct values, based on set theory.

  • gopkg.in/typ.v4/sets:

  • sets.Set[T]: Generic set interface, implemented by sync2.Set and maps.Set

  • gopkg.in/typ.v4/slices:

  • slices.Sorted[T]: Always-sorted slice. Requires custom less function.

Explanation:

  • Forked type: Copied their code and modified it so it uses generic types down to the backing struct layer. This benefits the most from generics support.

  • Wrapped type: Code depends on the underlying non-generic type, and adds abstraction to hide the type casting. Less performant than full generic support, but is done to reduce excessive complexity in this repository.

  • Neither forked nor wrapped: Original code written by yours truly.

Development

Please read the CONTRIBUTING.md for information about development environment and guidelines.

Similar projects

All the below include multiple data structure implementations each, all with Go 1.18 generics support.

Official Go packages:

License

This project is primarily licensed under the MIT license:

  • My Go code in this project is licensed under the MIT license: LICENSES/MIT.txt

  • Some Go code in this project is forked from Go's source code, which is licensed under the 3-Clause BSD license: LICENSES/BSD-3-Clause.txt

  • Documentation is licensed under the Creative Commons Attribution 4.0 International (CC-BY-4.0) license: LICENSES

  • Miscellanious files are licensed under the Creative Commons Zero Universal license (CC0-1.0): LICENSES

  • GitHub Action for REUSE linting (and not any of go-typ's code) is licensed under GNU General Public License 3.0 or later (GPL-3.0-or-later): LICENSES/GPL-3.0-or-later.txt

Copyright © Kalle Fagerberg

Extension points exported contracts — how you extend this code

Real (Interface)
Real is a type constraint for any real numbers. That being integers or floats.
constraints.go
KeyedLocker (Interface)
KeyedLocker represents an object that can be locked and unlocked on a per-key basis.
sync2/keyedmutex.go
Receiver (Interface)
Receiver is a constraint that permits a receive-only chan or a send & receive channal.
chans/constraints.go
Set (Interface)
Set is an interface for sets.
sets/sets.go
Number (Interface)
Number is a type constraint for any Go numbers, including complex numbers.
constraints.go
Sender (Interface)
Sender is a constraint that permits a send-only chan or a send & receive channal.
chans/constraints.go
Signed (Interface)
Signed is a constraint that permits any signed integer type. If future releases of Go add new predeclared signed integer
constraints.go
Chan (Interface)
Chan is a constraint that permits any type of channel, be it a receive-only, send-only, or unidirectional channel.
chans/constraints.go

Core symbols most depended-on inside this repo

Add
called by 58
sets/sets.go
Store
called by 46
sync2/map_reference_test.go
Next
called by 33
lists/ring.go
Comparable
called by 32
internal/assert/assert.go
Load
called by 31
sync2/map_reference_test.go
PushBack
called by 29
lists/list.go
Len
called by 29
sets/sets.go
Slice
called by 29
sets/sets.go

Shape

Function 273
Method 218
Struct 34
Interface 14
TypeAlias 5

Languages

Go100%

Modules by API surface

slices/slices.go44 symbols
avl/avl.go38 symbols
lists/list.go25 symbols
sync2/map.go20 symbols
slices/sort.go19 symbols
sync2/set.go18 symbols
maps/set.go18 symbols
slices/slices_test.go17 symbols
sets/sets.go17 symbols
sync2/map_test.go16 symbols
sync2/map_reference_test.go16 symbols
sync2/keyedmutex.go16 symbols

For agents

$ claude mcp add typ \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact