On 2012-02-15 08:38, Bill Baxter wrote:
    On Tuesday, February 14, 2012 20:47:27 Walter Bright wrote:

    * Allow 1.userproperty syntax


Where is this odd-sounding beast documented?

And what is UFCS?

--bb


Uniform Function Call Syntax. Which basically means you can call free functions as they were methods.

void foo (int a, int b);

foo(1, 2);

1.foo(2);

--
/Jacob Carlborg

Reply via email to