http://qs321.pair.com?node_id=568632


in reply to Re: RFC: Business::CreditCard::Obscure
in thread RFC: Business::CreditCard::Obscure

I understand what you're saying and appreciate the comment. There is something you may be overlooking, though. I would like the user to have the choice of either calling new then obscure, or just going straight to Business::CreditCard::Obscure->obscure(). That's why I have the extra goodies inside that method. The constructor stuff in the new method was mostly just for user convenience to suit their preferred coding style. I'm aiming for maximum effective flexibility.

---
It's all fine and dandy until someone has to look at the code.

Replies are listed 'Best First'.
Re^3: RFC: Business::CreditCard::Obscure
by izut (Chaplain) on Aug 21, 2006 at 18:22 UTC

    I could use the module like this:

    my $obscure = Business::CreditCard::Obscure->new(cardnum => '123456789 +012')->obscure();

    Since it is very specific, why don't you write your module to export a function, like this:

    use Business::CreditCard::Obscure qw(obscure); my $obscure = obscure(cardnum = '123456789012');

    Igor 'izut' Sutton
    your code, your rules.