mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
* late instantiation for the generic procs' default param values * automatic mixin behaviour in concepts Other fixes: * don't render the automatically inserted default params in calls * better rendering of tyFromExpr
13 lines
234 B
Nim
13 lines
234 B
Nim
type
|
|
KeccakHash* = object
|
|
data*: string
|
|
|
|
BytesRange* = object
|
|
bytes*: string
|
|
|
|
TrieDatabase* = concept db
|
|
put(var db, KeccakHash, string) is bool
|
|
del(var db, KeccakHash) is bool
|
|
get(db, KeccakHash) is string
|
|
|