mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-13 22:38:04 +00:00
15 lines
343 B
Go
15 lines
343 B
Go
|
package yqlib
|
||
|
|
||
|
// orderedMap allows to marshal and unmarshal JSON and YAML values keeping the
|
||
|
// order of keys and values in a map or an object.
|
||
|
type orderedMap struct {
|
||
|
// if this is an object, kv != nil. If this is not an object, kv == nil.
|
||
|
kv []orderedMapKV
|
||
|
altVal interface{}
|
||
|
}
|
||
|
|
||
|
type orderedMapKV struct {
|
||
|
K string
|
||
|
V orderedMap
|
||
|
}
|