> Perl currently only has C<eq> and C<cmp> operators which work case-sensitively.
> It would be a useful addition to add case-insensitive equivalents.


As I recall, the consensus the last time this came up was that C<cmpi> and
C<eqi> would be perfect examples w/in a RFC proposing a way to declare
a function to take it's arguments in infix instead of prefix manner.


        sub cmpi($cmpi$){       # or something like this
                uc(shift) cmp uc(shift)
        }


-- 
                          David Nicol 816.235.1187 [EMAIL PROTECTED]
               "The most powerful force in the universe is gossip"

Reply via email to