mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 21:40:32 +00:00
Implement json.% for tables and options
This commit is contained in:
committed by
Dominik Picheta
parent
0c4d1fd10b
commit
f1ae0ed6ea
@@ -143,7 +143,7 @@ runnableExamples:
|
||||
|
||||
import
|
||||
hashes, tables, strutils, lexbase, streams, unicode, macros, parsejson,
|
||||
typetraits
|
||||
typetraits, options
|
||||
|
||||
export
|
||||
tables.`$`
|
||||
@@ -344,6 +344,16 @@ proc `%`*[T](elements: openArray[T]): JsonNode =
|
||||
result = newJArray()
|
||||
for elem in elements: result.add(%elem)
|
||||
|
||||
proc `%`*[T](table: Table[string, T]|OrderedTable[string, T]): JsonNode =
|
||||
## Generic constructor for JSON data. Creates a new ``JObject JsonNode``.
|
||||
result = newJObject()
|
||||
for k, v in table: result[k] = %v
|
||||
|
||||
proc `%`*[T](opt: Option[T]): JsonNode =
|
||||
## Generic constructor for JSON data. Creates a new ``JNull JsonNode``
|
||||
## if ``opt`` is empty, otherwise it delegates to the underlying value.
|
||||
if opt.isSome: %opt.get else: newJNull()
|
||||
|
||||
when false:
|
||||
# For 'consistency' we could do this, but that only pushes people further
|
||||
# into that evil comfort zone where they can use Nim without understanding it
|
||||
|
||||
Reference in New Issue
Block a user