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

katta
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
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
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
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
budgie
A little off-topic, but I feel like people here have a good head on their shoulders. I used to be quite good at making software. Was luc...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews