void test(int[] ints...) if(ints.length){ // stuff }
Not being able to specify this interferes with how I'd like to define my method overloads. What's the best way to achieve what I'm looking for?
pineapple via Digitalmars-d-learn Wed, 06 Jul 2016 12:56:20 -0700
void test(int[] ints...) if(ints.length){ // stuff }
Not being able to specify this interferes with how I'd like to define my method overloads. What's the best way to achieve what I'm looking for?