From 7e43edffa0f8b0f3b9c3e443dfffdab228ab8f2a Mon Sep 17 00:00:00 2001 From: piegames Date: Sun, 21 Jul 2024 10:54:11 +0200 Subject: [PATCH] Document apply a bit more --- rfcs/0148-pipe-operator.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rfcs/0148-pipe-operator.md b/rfcs/0148-pipe-operator.md index 374dae143..6ab8e92b5 100644 --- a/rfcs/0148-pipe-operator.md +++ b/rfcs/0148-pipe-operator.md @@ -271,6 +271,9 @@ f (g x) The biggest disadvantage with it is backwards compatibility of adding a new keyword into the language, which would require solving language versioning first (see RFC #137). +This approach would be roughly equivalent to introducing a `<|` operator. +See the above for a discussion on the overall design space of that. + ## `builtins.pipe` `lib.pipe`'s functionality could be implemented as a built-in function.