Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cursor ¶
type Cursor interface {
CurrentValue() rt.Value
SetAtIndex(int, rt.Value) error
GetAtIndex(int) (Cursor, error)
SetAtField(string, rt.Value) error
GetAtField(string) (Cursor, error)
}
Cursor - generic access to objects, lists, and records.
func MakeObjectCursor ¶
supports requesting fields from the runtime where the top level is the id of the object or meta.Variables
type Dotted ¶
type Dotted interface {
Peek(Cursor) (Cursor, error)
Poke(Cursor, rt.Value) error
// contains filtered or unexported methods
}
Dotted - path operations to access the contents of certain targets.
type Endpoint ¶
type Endpoint struct {
// contains filtered or unexported fields
}
the final position in a path where we might want to get or put a value. returned by FindEndpoint()
func FindEndpoint ¶
expects there's at least one path element
Click to show internal directories.
Click to hide internal directories.