shahryarjb

shahryarjb

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 ?

Showing Posts 1 to 4

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? 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
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
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

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
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
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews