Merge branch 'staged'
[dports.git] / devel / p5-Module-Implementation / pkg-descr
1 Module::Implementation abstracts out the process of choosing one of several
2 underlying implementations for a module. This can be used to provide XS and pure
3 Perl implementations of a module, or it could be used to load an implementation
4 for a given OS or any other case of needing to provide multiple implementations.
5
6 Module::Implementation is only useful when you know all the implementations
7 ahead of time. If you want to load arbitrary implementations then you probably
8 want something like a plugin system, not this module.