(conf any, optFactories []ConfigOptionFactory)
| 672 | } |
| 673 | |
| 674 | func handleExtendedConfigOption(conf any, optFactories []ConfigOptionFactory) (EnvOption, bool) { |
| 675 | for _, optFac := range optFactories { |
| 676 | if opt, useOption := optFac(conf); useOption { |
| 677 | return opt, true |
| 678 | } |
| 679 | } |
| 680 | return nil, false |
| 681 | } |
| 682 | |
| 683 | // EvalOption indicates an evaluation option that may affect the evaluation behavior or information |
| 684 | // in the output result. |
no outgoing calls
no test coverage detected