mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 10:22:15 +00:00
Fix tables.CountTable largest and smallest (#15115)
It needs to have len defined first because of the assert .len > 0. I just moved it up a bit to make them work.
This commit is contained in:
@@ -2293,6 +2293,10 @@ proc inc*[A](t: var CountTable[A], key: A, val = 1) =
|
||||
if val != 0:
|
||||
insertImpl()
|
||||
|
||||
proc len*[A](t: CountTable[A]): int =
|
||||
## Returns the number of keys in ``t``.
|
||||
result = t.counter
|
||||
|
||||
proc smallest*[A](t: CountTable[A]): tuple[key: A, val: int] =
|
||||
## Returns the ``(key, value)`` pair with the smallest ``val``. Efficiency: O(n)
|
||||
##
|
||||
@@ -2345,10 +2349,6 @@ proc getOrDefault*[A](t: CountTable[A], key: A; default: int = 0): int =
|
||||
## is in the table
|
||||
ctget(t, key, default)
|
||||
|
||||
proc len*[A](t: CountTable[A]): int =
|
||||
## Returns the number of keys in ``t``.
|
||||
result = t.counter
|
||||
|
||||
proc del*[A](t: var CountTable[A], key: A) {.since: (1, 1).} =
|
||||
## Deletes ``key`` from table ``t``. Does nothing if the key does not exist.
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user