(value *TemplatableBool)
| 209 | } |
| 210 | |
| 211 | func templatableBoolPtrToStringPtr(value *TemplatableBool) *string { |
| 212 | if value == nil { |
| 213 | return nil |
| 214 | } |
| 215 | s := value.String() |
| 216 | return &s |
| 217 | } |
| 218 | |
| 219 | func templatableBoolIsTrue(value *TemplatableBool) bool { |
| 220 | return value != nil && value.String() == "true" |
no test coverage detected