aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/wiki_src/coding/uniform-function-call-syntax.md
blob: 399996186d7fa6e267f0a7df4d826699ce4b1c28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Uniform function call syntax (UFCS)

UFCS is a syntactic feature that allows you to use functions in a
different (perhaps more "natural") order.

By using the dot `.` between two terms, the first term will be applied
to the second term instead of the other way around.

Example:

``` bruijn
:test ("abc".length) (length "abc")
:test ("abc".length.inc) ((+4))
```