http://www.perlmonks.org?node_id=11125764


in reply to Module for sets of strings, ordered, case-insensitive?

I don't know of anything with built-in case-insensitivity. Nor the after convenience function for that matter. Have you looked at Set::Scalar? It does some of your spec. Maybe you could use that internally and provide sugar methods in a subclass ?

Hope this helps!


The way forward always starts with a minimal test.
  • Comment on Re: Module for sets of strings, ordered, case-insensitive?

Replies are listed 'Best First'.
Re^2: Module for sets of strings, ordered, case-insensitive?
by cxw (Scribe) on Dec 27, 2020 at 00:35 UTC
    Thanks for the suggestion! I had looked at Set::Scalar but didn't see the features you noted. A subclass is certainly a possibility!