From 808ff00e3b2276f06877703a6f150f0b52ca5ec8 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Thu, 6 Jul 2023 15:47:20 +0200 Subject: [PATCH] Improved documentation --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index b9b22cc..986c40e 100644 --- a/README.md +++ b/README.md @@ -10,19 +10,6 @@ If you like, you can operate on your entire data with classic UNIX tools. go get git.akyoto.dev/go/ocean ``` -## API - -```go -type Collection[T any] interface { - All() <-chan *T - Clear() - Delete(key string) - Exists(key string) bool - Get(key string) (value *T, ok bool) - Set(key string, value *T) -} -``` - ## Example ```go