** (Service) - Holds meta information on how the IoC registry was built.constmixin RegistryMeta {** The options map as defined by `RegistryBuilder`. ** This map is case-insensitive.** Useful for passing external immutable data into services. abstract[Str:Obj?] options()** Returns the 'option' value for the specified key. @Operatorabstract Obj? get(Str key)** Returns 'true' if the specified key is mapped in 'options'.abstract Bool containsKey(Str key)** Returns a list of modules loaded by this IoCabstract Type[] moduleTypes()** Returns a unique list of pods that contain modules loaded by this IoC.** ** Useful for gaining a list of pods used in an application, should you wish to *scan* for** classes. abstract Pod[] modulePods()}internalconstclass RegistryMetaImpl : RegistryMeta {overrideconst[Str:Obj?] optionsoverrideconst Type[] moduleTypesnew make([Str:Obj?] options, Type[] moduleTypes){this.options = optionsthis.moduleTypes = moduleTypes} @Operatoroverride Obj? get(Str key){ options[key]}override Bool containsKey(Str key){ options.containsKey(key)}override Pod[] modulePods(){ moduleTypes.map {it.pod }.unique}}