frellus

frellus OP

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.

First 5 of 5 Posts Switch mode

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

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
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
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
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 & 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
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
juhalehtonen
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New

We're in Beta

About us Mission Statement