Documentation ¶
Index ¶
- Variables
- func Move2(x, y Any, from, to string) (Any, Any, error)
- func Test(x Any, pointer string, v Any) error
- type Any
- func Add(x Any, pointer string, v Any) (Any, error)
- func Clone(x Any) Any
- func Copy(x Any, from, to string) (Any, error)
- func Copy2(x, y Any, from, to string) (Any, error)
- func Get(x Any, pointer string) (Any, error)
- func Merge(x, v Any) Any
- func Move(x Any, from, to string) (Any, error)
- func Remove(x Any, pointer string) (Any, error)
- func Replace(x Any, pointer string, v Any) (Any, error)
- type Array
- type Object
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // PointerEscaper is a replacer to replace `~`, `/` with `~0`, `~1`. PointerEscaper = strings.NewReplacer("~", "~0", "/", "~1") // PointerUnescaper is a replacer to replace `~0`, `~1` with `~`, `/`. PointerUnescaper = strings.NewReplacer("~0", "~", "~1", "/") )
Functions ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.