Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ For both Interpolator constructors, the caller must provide a Resolver for
resolving variable names to their associated values.







### <a name="New">func</a> [New](/src/target/interp.go?s=1089:1123#L32)
``` go
func New(g Resolver) *Interpolator
Expand All @@ -69,9 +64,6 @@ NewWithFormat returns a new Interpolator for the given Resolver and
specified VarFormat.





### <a name="Interpolator.Interpolate">func</a> (\*Interpolator) [Interpolate](/src/target/interp.go?s=1807:1867#L50)
``` go
func (i *Interpolator) Interpolate(s string) (string, error)
Expand All @@ -86,8 +78,6 @@ Interpolate continues this process until it no longer finds a variable
expression in the provided string, or an error is encountered.




## <a name="Resolver">type</a> [Resolver](/src/target/interp.go?s=211:486#L11)
``` go
type Resolver interface {
Expand All @@ -100,14 +90,6 @@ type Resolver interface {
Resolver is used by Interpolator to lookup values for interpolated variables.










## <a name="Value">type</a> [Value](/src/target/interp.go?s=2639:2661#L85)
``` go
type Value interface{}
Expand All @@ -124,14 +106,6 @@ the following guidelines:
* Otherwise the value is passed through fmt.Sprintf("%v")










## <a name="VarFormat">type</a> [VarFormat](/src/target/varfmt.go?s=175:405#L12)
``` go
type VarFormat struct {
Expand Down