frellus

frellus

So Enum.drop makes perfect sense to me - it drops the element at the exact position I think it should and returns a list.

Enum.drop_every has me tearing my hair out, so there’s something I’m meant to understand which I’m just not getting, and looking at the documentation for it isn’t helping at all.

Enum.drop_every docs says it

Returns a list of every nth element in the enumerable dropped, starting with the first element.
The first element is always dropped, unless nth is 0.
The second argument specifying every nth element must be a non-negative integer.

Ok, that makes sense. So If I take a list of 10 elements and I say drop every 2, I’d expect it to return all the even numbers … and it does!:

iex(1)> Enum.drop_every([1,2,3,4,5,6,7,8,9,10], 2)
[2, 4, 6, 8, 10]

So I lost the elements at position 1, 3, 5, 7, 9 .. yea! This makes perfect sense.

Ok, so now I want to drop all the odds, or every 3rd element.

iex(2)> Enum.drop_every([1,2,3,4,5,6,7,8,9,10], 3)
[2, 3, 5, 6, 8, 9]

So I lose elements at positions 1, 4, 7, 10 .. hm, ok maybe it makes sense, so I would have expected it to keep 1, but it did say that the first element is always droped. Fine, ok so if I count over from ‘4’ 3 places it’ll drop the 7, then plus 3 again the 10 gets dropped.. alright. So how do I just drop the odds? The counting starts after the first element is dropped, because I was thinking it should have returned [3,5,7,9].

Hmm, what if I say drop every 4th element?

iex(3)> Enum.drop_every([1,2,3,4,5,6,7,8,9,10], 4)
[2, 3, 4, 6, 7, 8, 10]

So we lost elements at position 1, 5, 9. So If I assume the first element is always dropped then count over by 4 positions and drop the remainder list is what’s left.

In what cases is this useful to me as an Elixir programmer? Maybe I’m not thinking logically, but if I wanted to just get a list of the odd positions in a list, I’m sure there’s a better way to do it now, but I’m struggling to understand why i would ever use Enum.drop_every unless the behavior of not always dropping the first element was true. Because then if I did this:

iex(4)> Enum.drop_every([1,2,3,4,5,6,7,8,9,10], 3)

I would happily get:

[3, 6, 9]

So now I can think of Enum.drop_every as a divisor of a list of elements. If I have a list of 100 elements and I drop every 2, then I would get all the even positions back, or divide the list by 10, I should get a list of 10 elements back.

Help me change my thinking here. I can’t believe something so basic is giving me a hard time, but I’m obviously not thinking about it the right way.

Showing Posts 1 to 5

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

This bit isn’t right. Odd numbers are also every other element, just offset by 1.

I think you understand how the function works, I just think you’re confused about whether it’s supposed to be a function you’d use to do even or odd numbers.

I wouldn’t try to solve the problem of doing the even or odd numbers with drop_every, I’d solve that with filter or reject where you keep or reject numbers that divide by 2.

al2o3cr

al2o3cr

Enum.drop_every was specifically added to extend the take -> drop relationship pattern to take_every:

https://github.com/elixir-lang/elixir/pull/4698

Odds would be Enum.take_every(list, 2).

frellus

frellus OP

Thanks for the feedback, Ben!

So I think about it the right way, could you give a practical use case of where Enum.drop_every makes sense?

frellus

frellus OP

Amazing … thank you, this is helpful and I didn’t know about codewars.com … neat!

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

A practical use case where Enum.drop_every is the right function to use does not readily come to my mind. From a “makes sense” perspective though I don’t know that a concrete use case is required. The idea of removing every nth item, starting with the first, is pretty cogent / well defined on its own.

— 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
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
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
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
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
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

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
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & 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
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews