Get is shorthand for calling the e.Load(), and then returning `e.env.Int(key, def)`.
(key string, def int)
| 39 | // Get is shorthand for calling the e.Load(), and then returning |
| 40 | // `e.env.Int(key, def)`. |
| 41 | func (e *delayedEnvironment) Int(key string, def int) int { |
| 42 | e.Load() |
| 43 | return e.env.Int(key, def) |
| 44 | } |
| 45 | |
| 46 | // All returns a copy of all the key/value pairs for the current git config. |
| 47 | func (e *delayedEnvironment) All() map[string][]string { |