(conf any, optFactories []ConfigOptionFactory)
| 684 | } |
| 685 | |
| 686 | func handleExtendedConfigOption(conf any, optFactories []ConfigOptionFactory) (EnvOption, bool) { |
| 687 | for _, optFac := range optFactories { |
| 688 | if opt, useOption := optFac(conf); useOption { |
| 689 | return opt, true |
| 690 | } |
| 691 | } |
| 692 | return nil, false |
| 693 | } |
| 694 | |
| 695 | // EvalOption indicates an evaluation option that may affect the evaluation behavior or information |
| 696 | // in the output result. |
no outgoing calls
no test coverage detected