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

Method Value

cft/diff/diff.go:91–99  ·  view source on GitHub ↗

value returns the slice's value

()

Source from the content-addressed store, hash-verified

89
90// value returns the slice's value
91func (s slice) Value() interface{} {
92 out := make([]interface{}, len(s))
93
94 for i, v := range s {
95 out[i] = v.Value()
96 }
97
98 return out
99}
100
101// String returns a string representation of the slice
102func (s slice) String() string {

Callers

nothing calls this directly

Calls 1

ValueMethod · 0.65

Tested by

no test coverage detected