Eric Mooshagian wrote:

What I would really like to do is pass an argument that includes comparators, for example, in pseudo code:

exclude => (responsetime <= 200) && (responsetime >= 1200) where responsetime refers to an array.

You could do it like SQL::Abstract does it:

    exclude => {
        responsetime => {
            '<=' => 200,
        },
    },

But then you expect a language on the next level to process that.

--
Ruud

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to