type github.com/aws/aws-sdk-go/internal/ini.Value

11 uses

	github.com/aws/aws-sdk-go/internal/ini (current package)
		ini_lexer.go#L147: var emptyValue = Value{}
		literal_tokens.go#L149: type Value struct {
		literal_tokens.go#L159: func newValue(t ValueType, base int, raw []rune) (Value, error) {
		literal_tokens.go#L160: 	v := Value{
		literal_tokens.go#L198: func (v *Value) Append(tok Token) {
		literal_tokens.go#L211: func (v Value) String() string {
		literal_tokens.go#L267: func (v Value) IntValue() int64 {
		literal_tokens.go#L272: func (v Value) FloatValue() float64 {
		literal_tokens.go#L277: func (v Value) BoolValue() bool {
		literal_tokens.go#L290: func (v Value) StringValue() string {
		visitor.go#L108: type values map[string]Value