ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
From: "alexbarret (Alexandre Barret) via ruby-core" <ruby-core@ml.ruby-lang.org>
To: ruby-core@ml.ruby-lang.org
Cc: "alexbarret (Alexandre Barret)" <noreply@ruby-lang.org>
Subject: [ruby-core:117242] [Ruby master Feature#8421] add Enumerable#find_map and Enumerable#find_all_map
Date: Tue, 19 Mar 2024 23:08:37 +0000 (UTC)	[thread overview]
Message-ID: <redmine.journal-107329.20240319230837.3055@ruby-lang.org> (raw)
In-Reply-To: redmine.issue-8421.20130518170348.3055@ruby-lang.org

Issue #8421 has been updated by alexbarret (Alexandre Barret).


jeremyevans0 (Jeremy Evans) wrote in #note-5:
> `find_map` seems like a bad name as there is no map. map implies calling the same function over all elements in a collection, and in this case, there would be a single element (or none if nothing was found).  Combining `find` and `then` seems like the simplest way now if you don't want to use `break`:

This is a good point. I always thought map was the action of transforming an element but it does have a implicit reference to an array or a collection.

> 
> ```ruby
> emails.find{ pattern.match(it) }&.then{ it[:identifier] }
> ```
> 
> Personally, I would use the following approach is I think it is clearer:
> 
> ```ruby
> if match = emails.find{ pattern.match(it) }
>   match[:identifier]
> end
> ```

The code aboce doesn't work ^. `match` variable assigned is an email string not the matches found from the email. We implicitly thought that `find` was returning the matches not the item iterated over.

----------------------------------------
Feature #8421: add Enumerable#find_map and Enumerable#find_all_map
https://bugs.ruby-lang.org/issues/8421#change-107329

* Author: Hanmac (Hans Mackowiak)
* Status: Feedback
----------------------------------------
currently if you have an Enumerable and you want to return the return value of #find you need eigther:
  (o = enum.find(block) && block.call(o)) || nil
or
  enum.inject(nil) {|ret,el| ret || block.call(el)}

neigher of them may be better than an directly maked method

same for #find_all_map
  enum.lazy.map(&:block).find_all{|el| el}

it may work but it is not so good



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

  parent reply	other threads:[~2024-03-19 23:08 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <redmine.issue-8421.20130518170348.3055@ruby-lang.org>
2020-11-29 23:40 ` [ruby-core:101145] [Ruby master Feature#8421] add Enumerable#find_map and Enumerable#find_all_map fluff
2024-03-19 20:38 ` [ruby-core:117237] " alexbarret (Alexandre Barret) via ruby-core
2024-03-19 20:50 ` [ruby-core:117239] " zverok (Victor Shepelev) via ruby-core
2024-03-19 22:46 ` [ruby-core:117241] " jeremyevans0 (Jeremy Evans) via ruby-core
2024-03-19 23:08 ` alexbarret (Alexandre Barret) via ruby-core [this message]
2024-03-19 23:12 ` [ruby-core:117243] " alexbarret (Alexandre Barret) via ruby-core

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.ruby-lang.org/en/community/mailing-lists/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=redmine.journal-107329.20240319230837.3055@ruby-lang.org \
    --to=ruby-core@ruby-lang.org \
    --cc=noreply@ruby-lang.org \
    --cc=ruby-core@ml.ruby-lang.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).