summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/stretchr/objx/value.go
blob: 7aaef06b1ce32e3f0d2bfb328cc501fa9ec332eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package objx

// Value provides methods for extracting interface{} data in various
// types.
type Value struct {
	// data contains the raw data being managed by this Value
	data interface{}
}

// Data returns the raw data contained by this Value
func (v *Value) Data() interface{} {
	return v.data
}