Get is shorthand for calling the e.Load(), and then returning `e.env.Bool(key, def)`.
(key string, def bool)
| 32 | // Get is shorthand for calling the e.Load(), and then returning |
| 33 | // `e.env.Bool(key, def)`. |
| 34 | func (e *delayedEnvironment) Bool(key string, def bool) bool { |
| 35 | e.Load() |
| 36 | return e.env.Bool(key, def) |
| 37 | } |
| 38 | |
| 39 | // Get is shorthand for calling the e.Load(), and then returning |
| 40 | // `e.env.Int(key, def)`. |