in reply to Re^2: Remove a role from a Moose object
in thread Remove a role from a Moose object

I am pondering whether you are doing something extremely clever (and I fail to see the point) or whether you're just doing it wrong. The reason why I consider 'you are doing it wrong' is because all instances of a specific class are supposed to have the same interface.

Typical approaches to solve your requirements would be:

In your case I suggest the second approach since you indicated the readonly/readwrite status may change at some point.

  • Comment on Re^3: Remove a role from a Moose object

Replies are listed 'Best First'.
Re^4: Remove a role from a Moose object
by balachandran (Novice) on Nov 08, 2016 at 15:08 UTC
    Thanks, I am going with the second approach for now. croaking/confessing when configurable is false. Thanks again.