MCPcopy Create free account
hub / github.com/aws-cloudformation/rain / Value

Method Value

cft/diff/diff.go:127–135  ·  view source on GitHub ↗

value returns the dmap's value

()

Source from the content-addressed store, hash-verified

125
126// value returns the dmap's value
127func (m dmap) Value() interface{} {
128 out := make(map[string]interface{})
129
130 for k, v := range m {
131 out[k] = v.Value()
132 }
133
134 return out
135}
136
137// keys returns the dmap's keys
138func (m dmap) keys() []string {

Callers

nothing calls this directly

Calls 1

ValueMethod · 0.65

Tested by

no test coverage detected