Conversation

Lua has x:f(y) which means x.f(x, y) ClojureScript has (.f x) and (.-f x) and (-> x f) F# has x.f and x |> f Each of these are slightly different. What are some other unique postfix/chaining syntax/semantics?
1
6