Uniform function call syntax: Difference between revisions

Content deleted Content added
Added three categories.
m Link to section
Line 1:
'''Uniform Function Call Syntax''' (UFCS) is a programming language feature in [[D (programming language)|D]] that allows any function to be called on an object (as in [[Object-oriented programming]]) like the function is a method of its class.<ref>http://dlang.org/function.html#pseudo-member</ref> UFCS is particularly useful when function calls are chained.<ref>http://ddili.org/ders/d.en/ufcs.html</ref>
 
== Examples ==