Uniform function call syntax: Difference between revisions

Content deleted Content added
Rust doesn't implement UFCS although it's true that the term was commonly used until recently to refer to related but substantially different feature.
Tags: references removed Visual edit
m "followings" -> "following"
Line 31:
auto a = [0, 1, 2, 3];
 
// All the followingsfollowing are correct and equivalent
int b = first(a);
int c = a.first();