Fl4m3Ph03n1x

Fl4m3Ph03n1x

Background

I use a library that defines a new pipeline macro, the triple arrow >>>. So in my code, it is normal to have something like this:

def safe_div(a, b), do:
  a 
  |> divide(b)
  >>> handle_result()

This magic here is in handle_result. What the >>> does is not important, what matters here is that this is a type of format that I want to see in my code.

Problem

The problem here is the mix format does not know how that it should treat >>> as it treats |>. So inevitably my code becomes:

def safe_div(a, b), do:
  a 
  |> divide(b) >>> handle_result()

Which is very ugly and impossible to read for larger functions.

I have tried to find a way to change mix format’s configuration to fix this issue, unfortunately I was not able to find anything.

Question

  • Can I configure mix format to treat >>> as a |> ?
  • If not, would it be a bad idea to make a PR where people would be allowed to define “pipelike” operators/macros, thus telling mix format how to behave?

Basically, what options do I have here ?

Showing Posts 1 to 5

mudasobwa

mudasobwa

Creator of Cure

I cannot validate it now, but I guess >>>/2 macro should inject end_of_expression: [newlines: 1] or like into meta (second tuple element) of the corresponding AST it produces.

Somewhat like here.

Fl4m3Ph03n1x

Fl4m3Ph03n1x OP

Quite interesting. So I would have to change the code of the library I am using, right?

josevalim

josevalim

Creator of Elixir

Here are the operators we consider pipeline like: elixir/lib/elixir/lib/code/formatter.ex at v1.11.4 · elixir-lang/elixir · GitHub

>>> isn’t one because it is also used as a Bitwise operator by Elixir.

mudasobwa

mudasobwa

Creator of Cure

Well, better change the operator to one of those considered pipes already, but if the consumer code is already full of calls and you don’t want to stick to it, change the >>>/2 itself. If I am not mistaken with the approach.

Fl4m3Ph03n1x

Fl4m3Ph03n1x OP

@josevalim and @mudasobwa Thank you all for your support and answers. I will now see what I can do!

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New

Latest on Elixir Forum

Elixir Forum

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews