diff options
| author | technicallyagd <43739261+technicallyagd@users.noreply.github.com> | 2018-12-10 19:38:56 +0800 |
|---|---|---|
| committer | Miran <narimiran@disroot.org> | 2018-12-10 12:38:56 +0100 |
| commit | f5fc73438aaee944aca4de22da782131cd03296e (patch) | |
| tree | 51d6b7ffafb9d397a03681a99b548e6732a42ead | |
| parent | 2930b5871aa7be954fe0d812e33e166b5481b039 (diff) | |
| download | packages-f5fc73438aaee944aca4de22da782131cd03296e.tar.gz packages-f5fc73438aaee944aca4de22da782131cd03296e.zip | |
Added package ringDeque (#960)
| -rw-r--r-- | packages.json | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/packages.json b/packages.json index 111dd3b..1b064c4 100644 --- a/packages.json +++ b/packages.json @@ -1,13 +1,27 @@ [ - { + { "name": "elvis", "url": "https://github.com/mattaylor/elvis", "method": "git", - "tags": [ "operator", "elvis", "ternary", "template", "truthy", "falsy", "exception", "none", "null", "nil", "0", "NaN", "coalesce" ], + "tags": [ + "operator", + "elvis", + "ternary", + "template", + "truthy", + "falsy", + "exception", + "none", + "null", + "nil", + "0", + "NaN", + "coalesce" + ], "description": "The elvis package implements a 'truthy', 'ternary' and a 'coalesce' operator to Nim as syntactic sugar for working with conditional expressions", "license": "MIT", "web": "https://github.com/mattaylor/elvis" - }, + }, { "name": "nimrun", "url": "https://github.com/lee-b/nimrun", @@ -11811,5 +11825,19 @@ "description": "Array/Sequence/Object destructuring/unpacking macro", "license": "MIT", "web": "https://github.com/technicallyagd/unpack" + }, + { + "name": "ringDeque", + "url": "https://github.com/technicallyagd/ringDeque", + "method": "git", + "tags": [ + "deque", + "DoublyLinkedRing", + "utility", + "python" + ], + "description": "deque implementatoin using DoublyLinkedRing", + "license": "MIT", + "web": "https://github.com/technicallyagd/ringDeque" } ] |
