hariharasudhan94

hariharasudhan94

lets say i have a sample like

a = 20; b = 10;
if (a > b) do
{:ok, "a"}
end

if (a < b) do
{:ok, b}
end

if (a == b) do
{:ok, "equal"}
end

when i run this code first condition satisfied ,instead of returning {:ok, "a"} tuple it starts executing next block of code, how can i stop the execution once first condition is met, and return result

Showing Posts 1 to 6

LostKobrakai

LostKobrakai

You can’t return early in elixir, but there’s another constuct for such operations:

cond do
  a > b -> {:ok, "a"}
  a < b -> {:ok, "b"}
  a == b -> {:ok, "equal"}
end
OvermindDL1

OvermindDL1

To be more specific, there are no statements, everything returns something, including those lines, they just return it ‘up’ (so the if returns it, but the if is not being assigned to anything so it vanishes). :slight_smile:

gregvaughn

gregvaughn

You could use a cond, as shown above, or even different named function heads with pattern matching

def compare(a, a), do: {:ok, “equal”}
def compare(a, b) when a > b, do: {:ok, “a”}
def compare(a, b) when a < b, do: {:ok, “b”}

peerreynders

peerreynders

Just to add to the spectrum (i.e. I’m not recommending this) I see Greg’s suggestion as a “cleaned up” version of

a = 20 
b = 10

result = 
  case {a,b} do
    {c,c} -> "equal"
    {c,d} when c > d -> "a"
    {c,d} when c < d -> "b"
  end
reply = {:ok, result}

IO.inspect(reply)

which could also be written as

a = 20 
b = 10

result = 
  case {a,b} do
    _ when a > b -> "a"
    _ when a < b -> "b"
    _ -> "equal"
  end
reply = {:ok, result}

IO.inspect(reply)

leading to the accepted solution

a = 20 
b = 10

result = 
  cond do
    a > b -> "a"
    a < b -> "b"
    true -> "equal"
  end
reply = {:ok, result}

IO.inspect(reply)

And if do always has a “second” value it evaluates to when the condition is false - it will return nil

a = 10 
b = 20

value1 = 
  if a > b do
    "a"  
  end
  
value2 = 
  cond do
    a > b -> "a"
    true -> nil
  end

IO.inspect({value1,value2})

> {nil, nil}
NobbZ

NobbZ

This is not equivalent to the OPs code, since a == b is true for a = 1; b = 1.0, but your code would run into a function clause error.

gregvaughn

gregvaughn

You’ve got quite the eye for detail! And that brings up a great point: which one is more correct is going to depend on the actual requirements of the problem. Knowing multiple approaches to a problem can help choose the one that best matches the requirements.

— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
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
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
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
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New

Other Trending Topics Top

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
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews