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