• FluidBeef@quokk.au
    link
    fedilink
    English
    arrow-up
    6
    ·
    6 days ago

    Isn’t reduce just aggregation operations such as count, sum, etc? What’s even the alternative there if someone disliked doing aggregation for some reason? What if I anecdotally disliked subtraction?

    • verstra@programming.dev
      link
      fedilink
      arrow-up
      7
      ·
      6 days ago

      It’s aggregation in general. It’s the iterator function you can use to implement sum, or count, or both at the same time.

      This post is just saying that’s interesting that people dislike is more than say map or filter

    • Cyclohexane@lemmy.ml
      link
      fedilink
      English
      arrow-up
      2
      ·
      5 days ago

      The alternative most people probably use is iterative loops, like for loops and while loops and the like, with a mutable variable somewhere. I don’t love it, personally.

      I guess the other potential alternative is doing the iteration recursively, but I doubt that’s what most people think of as an alternative to reduce.