ValueSourceChain contains an ordered series of ValueSource that allows for lookup where the first ValueSource to resolve is returned
| 41 | // allows for lookup where the first ValueSource to resolve is |
| 42 | // returned |
| 43 | type ValueSourceChain struct { |
| 44 | Chain []ValueSource |
| 45 | } |
| 46 | |
| 47 | func NewValueSourceChain(src ...ValueSource) ValueSourceChain { |
| 48 | return ValueSourceChain{ |
nothing calls this directly
no outgoing calls
no test coverage detected