Code

struct test
{
   private real value;

   this(real value)
   {
      this.value = value;
   }

   bool opUnary(string op)() if (op == "!")
   {
      return !value;
   }
}

void main()
{
   test a = 123.12345;
   bool b = !a;
}

Compilation error

prog.d(19): Error: expression a of type test does not have a boolean value

http://ideone.com/Kec81

Also tested on dmd 2.053, 2.054

What's wrong with my code?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You cannot overload the ! operator in D - see http://www.d-programming-language.org/operatoroverloading.html#Unary for a list of overloadable unary operators. Without knowing what you're doing, it's hard to suggest a work around, it might be worth looking at alias this though - http://www.d-programming-language.org/class.html#AliasThis.

link|improve this answer
2  
Thanks. It seems you are right. This is an example from The D Programming Language. It seems I need to overload cast(bool) instead. – Stas Aug 7 '11 at 18:45
2  
Note that all the logical operators are missing. IIRC that is intentional. – BCS Aug 7 '11 at 19:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.