This commit is contained in:
Felix Krause 2021-05-18 00:31:47 +02:00
parent a72966374f
commit 1346467b42
16 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
import yaml.serialization, streams import yaml/serialization, streams
type Person = object type Person = object
name : string name : string
age : int32 age : int32

View File

@ -1,4 +1,4 @@
import yaml.serialization, streams import yaml/serialization, streams
type Person = object type Person = object
name : string name : string
age : int32 age : int32

View File

@ -1,4 +1,4 @@
import yaml.serialization, yaml.presenter, streams import yaml/serialization, yaml/presenter, streams
type Person = object type Person = object
name: string name: string
age: int32 age: int32

View File

@ -1,4 +1,4 @@
import yaml.serialization, streams import yaml/serialization, streams
type type
Node = ref NodeObj Node = ref NodeObj
NodeObj = object NodeObj = object

View File

@ -1,4 +1,4 @@
import yaml.serialization, streams import yaml/serialization, streams
type type
Node = ref NodeObj Node = ref NodeObj
NodeObj = object NodeObj = object

View File

@ -1,4 +1,4 @@
import yaml.serialization, yaml.presenter, streams import yaml/serialization, yaml/presenter, streams
type Person = object type Person = object
name : string name : string
age : int32 age : int32

View File

@ -1,4 +1,4 @@
import yaml.serialization, streams import yaml/serialization, streams
type Person = object type Person = object
name : string name : string
age : int32 age : int32

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## ======================= ## =======================
## Module yaml.annotations ## Module yaml/annotations
## ======================= ## =======================
## ##
## This module provides annotations for object fields that customize ## This module provides annotations for object fields that customize

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## =============== ## ===============
## Module yaml.dom ## Module yaml/dom
## =============== ## ===============
## ##
## This is the DOM API, which enables you to load YAML into a tree-like ## This is the DOM API, which enables you to load YAML into a tree-like

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## ================= ## =================
## Module yaml.hints ## Module yaml/hints
## ================= ## =================
## ##
## The hints API enables you to guess the type of YAML scalars. ## The hints API enables you to guess the type of YAML scalars.

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## ================== ## ==================
## Module yaml.parser ## Module yaml/parser
## ================== ## ==================
## ##
## This is the low-level parser API. A ``YamlParser`` enables you to parse any ## This is the low-level parser API. A ``YamlParser`` enables you to parse any

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## ===================== ## =====================
## Module yaml.presenter ## Module yaml/presenter
## ===================== ## =====================
## ##
## This is the presenter API, used for generating YAML character streams. ## This is the presenter API, used for generating YAML character streams.

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## ========================= ## =========================
## Module yaml.serialization ## Module yaml/serialization
## ========================= ## =========================
## ##
## This is the most high-level API of NimYAML. It enables you to parse YAML ## This is the most high-level API of NimYAML. It enables you to parse YAML

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## ================== ## ==================
## Module yaml.stream ## Module yaml/stream
## ================== ## ==================
## ##
## The stream API provides the basic data structure on which all low-level APIs ## The stream API provides the basic data structure on which all low-level APIs

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## ================== ## ==================
## Module yaml.taglib ## Module yaml/taglib
## ================== ## ==================
## ##
## The taglib API enables you to define custom tags for the types you are ## The taglib API enables you to define custom tags for the types you are

View File

@ -5,7 +5,7 @@
# distribution, for details about the copyright. # distribution, for details about the copyright.
## ================== ## ==================
## Module yaml.tojson ## Module yaml/tojson
## ================== ## ==================
## ##
## The tojson API enables you to parser a YAML character stream into the JSON ## The tojson API enables you to parser a YAML character stream into the JSON