String returns the underlying string representation of the value.
()
| 205 | |
| 206 | // String returns the underlying string representation of the value. |
| 207 | func (t *TemplatableBool) String() string { |
| 208 | return string(*t) |
| 209 | } |
| 210 | |
| 211 | func templatableBoolPtrToStringPtr(value *TemplatableBool) *string { |
| 212 | if value == nil { |
no outgoing calls
no test coverage detected