···75757676If you're familiar with prototype inheritance, you can think of the current, actual `evalModules` invocation as the prototype, and the return value of `extendModules` as the instance.
77777878+This functionality is also available to modules as the `extendModules` module argument.
7979+8080+::: {.note}
8181+8282+**Evaluation Performance**
8383+8484+`extendModules` returns a configuration that shares very little with the original `evalModules` invocation, because the module arguments may be different.
8585+8686+So if you have a configuration that has been (or will be) largely evaluated, almost none of the computation is shared with the configuration returned by `extendModules`.
8787+7888The real work of module evaluation happens while computing the values in `config` and `options`, so multiple invocations of `extendModules` have a particularly small cost, as long as only the final `config` and `options` are evaluated.
79898090If you do reference multiple `config` (or `options`) from before and after `extendModules`, evaluation performance is the same as with multiple `evalModules` invocations, because the new modules' ability to override existing configuration fundamentally requires constructing a new `config` and `options` fixpoint.
8181-8282-This functionality is also available to modules as the `extendModules` module argument.
9191+:::
83928493#### `_module` {#module-system-lib-evalModules-return-value-_module}
8594