Checking function parameters in Phobos

Timon Gehr timon.gehr at gmx.ch
Wed Nov 20 05:01:19 PST 2013


On 11/20/2013 12:57 PM, Jacob Carlborg wrote:
>
> bool isValid (Data data);
>
> void process (Data data)
> {
>      assert(isValid(data));
>      // process
> }


void process(Data data)in{ assert(isValid(data)); }body{
     // process
}


More information about the Digitalmars-d mailing list