From c35d3d051e114bdaa36ffc757c1c6b6ab7fa9064 Mon Sep 17 00:00:00 2001 From: Leonardo Taglialegne Date: Mon, 11 Mar 2024 23:04:45 +0100 Subject: [PATCH] Expose pipeLeft --- review/suppressed/NoUnused.Variables.json | 2 +- src/Elm/Op.elm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/review/suppressed/NoUnused.Variables.json b/review/suppressed/NoUnused.Variables.json index c3370836..d59cdbc1 100644 --- a/review/suppressed/NoUnused.Variables.json +++ b/review/suppressed/NoUnused.Variables.json @@ -6,10 +6,10 @@ { "count": 8, "filePath": "src/Internal/Compiler.elm" }, { "count": 4, "filePath": "src/Internal/Debug.elm" }, { "count": 4, "filePath": "src/Internal/Write.elm" }, - { "count": 2, "filePath": "src/Elm/Op.elm" }, { "count": 2, "filePath": "src/Internal/Comments.elm" }, { "count": 2, "filePath": "tests/Pattern.elm" }, { "count": 1, "filePath": "src/Elm.elm" }, + { "count": 1, "filePath": "src/Elm/Op.elm" }, { "count": 1, "filePath": "src/Internal/Index.elm" }, { "count": 1, "filePath": "tests/Elm/Expect.elm" }, { "count": 1, "filePath": "tests/PackageHelpers.elm" } diff --git a/src/Elm/Op.elm b/src/Elm/Op.elm index f887e909..fa16be99 100644 --- a/src/Elm/Op.elm +++ b/src/Elm/Op.elm @@ -3,7 +3,7 @@ module Elm.Op exposing , append, cons , plus, minus, multiply, divide, intDivide, power , lt, gt, lte, gte - , pipe + , pipe, pipeLeft , parens , keep, skip , slash, query @@ -39,7 +39,7 @@ Would generate @docs lt, gt, lte, gte -@docs pipe +@docs pipe, pipeLeft @docs parens