Re: Interactions between optional and nullable

On Tue, 08 Dec 2009 16:38:44 +0100, Robin Berjon <robin@robineko.com>  
wrote:
> I've been trying to figure out what the expected approach should be for  
> the following case:
>
>   interface Dahut {
>       void foo (optional Foo foo, optional Bar bar);
>   };

You want:

   interface Dahut {
       void foo (optional Bar bar);
       void foo (optional Foo foo, optional Bar bar);
   };


-- 
Anne van Kesteren
http://annevankesteren.nl/

Received on Tuesday, 8 December 2009 15:55:33 UTC