1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-06 00:48:45 +01:00
Files
Michail Resvanis 7288685bcc Add imagebased installation ISO assets
Signed-off-by: Michail Resvanis <mresvani@redhat.com>
2024-07-11 21:07:43 +02:00
..
2024-07-11 21:07:43 +02:00
2024-07-11 21:07:43 +02:00
2024-07-11 21:07:43 +02:00
2024-07-11 21:07:43 +02:00
2024-07-11 21:07:43 +02:00

go-json

This is a fork of Go's encoding/json library. It adds a third target for unmarshalling, json.Node.

Unmarshalling to a Node behaves similarly to unmarshalling to any, except that it also records the offsets for the start and end of the value that is unmarshalled and, if the value is part of a JSON object, the offsets of the start and end of the object's key. The Value field of the Node is unmarshalled to the same type as if it were any, except in the case of arrays and objects:

JSON type Go type, unmarshalled to any Node.Value type
Array []any []Node
Object map[string]any map[string]Node
Other any any