open-consul/vendor/github.com/mitchellh/pointerstructure
R.B. Boyer 940e5ad160
acl: add auth method for JWTs (#7846)
2020-05-11 20:59:29 -05:00
..
.travis.yml acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
LICENSE acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
README.md acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
delete.go acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
get.go acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
go.mod acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
go.sum acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
parse.go acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
pointer.go acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
set.go acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00
sort.go acl: add auth method for JWTs (#7846) 2020-05-11 20:59:29 -05:00

README.md

pointerstructure GoDoc

pointerstructure is a Go library for identifying a specific value within any Go structure using a string syntax.

pointerstructure is based on JSON Pointer (RFC 6901), but reimplemented for Go.

The goal of pointerstructure is to provide a single, well-known format for addressing a specific value. This can be useful for user provided input on structures, diffs of structures, etc.

Features

  • Get the value for an address

  • Set the value for an address within an existing structure

  • Delete the value at an address

  • Sorting a list of addresses

Installation

Standard go get:

$ go get github.com/mitchellh/pointerstructure

Usage & Example

For usage and examples see the Godoc.

A quick code example is shown below:

complex := map[string]interface{}{
	"alice": 42,
	"bob": []interface{}{
		map[string]interface{}{
			"name": "Bob",
		},
	},
}

value, err := pointerstructure.Get(complex, "/bob/0/name")
if err != nil {
	panic(err)
}

fmt.Printf("%s", value)
// Output:
// Bob

Continuing the example above, you can also set values:

value, err = pointerstructure.Set(complex, "/bob/0/name", "Alice")
if err != nil {
	panic(err)
}

value, err = pointerstructure.Get(complex, "/bob/0/name")
if err != nil {
	panic(err)
}

fmt.Printf("%s", value)
// Output:
// Alice