shahryarjb

shahryarjb

How to create cycle function in elixir

Hello, I want to create the loop of 4 numbers like this:

1 Purple
2 Blue
3 Orange
4 Green

these 4 numbers should be repeated again in my for loop

<%= for el <- posts_entries do %>
    <%= el["title"] %>
   <%= the_number_which_I_need %>
<% end %>

For example, In repeating the fifth number, I want to repeat the purple color again and 6 is been Blue and …

How do I do this ?

First 4 of 4 Posts Switch mode

stefanchrobot

stefanchrobot

Stream.cycle([1,2,3,4]) |> Enum.take(10)
shahryarjb

shahryarjb OP

Thank you, I have 2 questions:

  1. how do I use this in my code, I need it to be printed a number in my code each loop, like this:
  • the_number_which_I_need = 1
  • the_number_which_I_need = 2
  • the_number_which_I_need = 3
  • the_number_which_I_need = 4
  • the_number_which_I_need = 1
<%= for el <- posts_entries do %>
    <%= el["title"] %>
   <%= the_number_which_I_need %>
<% end %>
  1. is there a way to create this in a function?
NobbZ

NobbZ

  1. Enum and Stream are your friends and loaded with a bunch of functions that can help you with this:
iex(1)> [:a, :b, :c, :d] |> Enum.with_index() |> Enum.map(fn {label, idx} -> {label, idx + 1} end) |> Stream.cycle() |> Stream.map(fn {label, nr} -> IO.puts "#{nr}: #{label}" end) |> Enum.take(10)
1: a
2: b
3: c
4: d
1: a
2: b
3: c
4: d
1: a
2: b
[:ok, :ok, :ok, :ok, :ok, :ok, :ok, :ok, :ok, :ok]
  1. Of course, just wrap it in a def, I leave this to your homework.
stefanchrobot

stefanchrobot

Oh, sure. You can use Enum.zip which returns list of tuples:

posts_entries = ["a", "b", "c", "d", "e", "f", "g"]
colors = Stream.cycle(["purple", "red", "orange"])

for {el, color} <- Enum.zip(posts_entries, colors) do
  IO.puts("#{el} (#{color})")
end

I’m not sure what you mean exactly, but would something like this work?

def colored_posts(posts, colors) do
  Enum.zip(posts, Stream.cycle(colors))
end
— All posts loaded —

Where Next?

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
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
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
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement