Redesigning Package::Strictures
Package::Strictures on metacpan
Design goals
- An infrastructure for having “optional” code blocks that can be eliminated prior to execution.
- Ideally, these code blocks can be toggled by calling code and then eliminated from the execution tree at the OP level.
- In essence, delegate 100% of the “Speed vs Correctness” concern to the consumer of the code, not the implementer.…