diff options
Diffstat (limited to 'lib/pure/collections/tables.nim')
-rw-r--r-- | lib/pure/collections/tables.nim | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index 20fe12fc8..2cfb6c2c6 100644 --- a/lib/pure/collections/tables.nim +++ b/lib/pure/collections/tables.nim @@ -2304,13 +2304,6 @@ proc `[]`*[A](t: CountTable[A], key: A): int = assert(not t.isSorted, "CountTable must not be used after sorting") ctget(t, key, 0) -proc mget*[A](t: var CountTable[A], key: A): var int = - ## Retrieves the value at ``t[key]``. The value can be modified. - ## - ## If ``key`` is not in ``t``, the ``KeyError`` exception is raised. - assert(not t.isSorted, "CountTable must not be used after sorting") - get(t, key) - proc `[]=`*[A](t: var CountTable[A], key: A, val: int) = ## Inserts a ``(key, value)`` pair into ``t``. ## @@ -2674,12 +2667,6 @@ proc `[]`*[A](t: CountTableRef[A], key: A): int = ## is in the table result = t[][key] -proc mget*[A](t: CountTableRef[A], key: A): var int = - ## Retrieves the value at ``t[key]``. The value can be modified. - ## - ## If ``key`` is not in ``t``, the ``KeyError`` exception is raised. - mget(t[], key) - proc `[]=`*[A](t: CountTableRef[A], key: A, val: int) = ## Inserts a ``(key, value)`` pair into ``t``. ## |