summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-15 10:31:43 +0000
committerZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-15 10:31:43 +0000
commit1925cf6f1a8c134cbfae728023ac325f03e4c14f (patch)
tree7902b0914d03c87f0d065eaf7255c7fd1e78547c
parentc35e14d5bd4af13db32741ba82775b375bd10331 (diff)
Added pipe operator into the README.md
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index bea5caa..4181108 100644
--- a/README.md
+++ b/README.md
@@ -247,6 +247,7 @@ unless is_valid { return; }
| `+`, `-`, `*`, `/`, `%` | Arithmetic | `add`, `sub`, `mul`, `div`, `rem` |
| `==`, `!=`, `<`, `>` | Comparison | `eq`, `neq`, `lt`, `gt` |
| `[]` | Indexing | `get`, `set` |
+| `\|>` | Pipeline (`x \|> f(y)` -> `f(x, y)`) | - |
| `??` | Null Coalescing (`val ?? default`) | - |
| `??=` | Null Assignment (`val ??= init`) | - |
| `?.` | Safe Navigation (`ptr?.field`) | - |