p5-mop-redux
p5-mop-redux copied to clipboard
need to document the difference between `new` and `BUILD`
In particular, BUILD
is called by new_instance
, so it will also be called when you clone an object, but an overridden new
method will not. Overriding new
should basically only be done to provide a different method signature, any actual behavioral changes should probably go in BUILD
.
Related to #15.