ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
From: fluff@lukeswart.net
To: ruby-core@ruby-lang.org
Subject: [ruby-core:101145] [Ruby master Feature#8421] add Enumerable#find_map and Enumerable#find_all_map
Date: Sun, 29 Nov 2020 23:40:58 +0000 (UTC)	[thread overview]
Message-ID: <redmine.journal-88830.20201129234057.3055@ruby-lang.org> (raw)
In-Reply-To: redmine.issue-8421.20130518170348.3055@ruby-lang.org

Issue #8421 has been updated by modulitos (Lucas Swart).


matz (Yukihiro Matsumoto) wrote in #note-1:
> Could you tell me a concrete use-case of your find_map and find_all_map?
> Usually a block for find/find_all gives boolean so that I personally have never wanted the return value from it.
> 
> Matz.

In Ruby 2.7, I think we can use `enumerable.lazy.filter_map{..}.first` as an equivalent for `.find_map{..}`

matz (Yukihiro Matsumoto) wrote in #note-1:
> Could you tell me a concrete use-case of your find_map and find_all_map?
> Usually a block for find/find_all gives boolean so that I personally have never wanted the return value from it.
> 
> Matz.



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

* Author: Hanmac (Hans Mackowiak)
* Status: Feedback
* Priority: Normal
----------------------------------------
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/

       reply	other threads:[~2020-11-29 23:41 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 ` fluff [this message]
2024-03-19 20:38 ` [ruby-core:117237] [Ruby master Feature#8421] add Enumerable#find_map and Enumerable#find_all_map 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 ` [ruby-core:117242] " alexbarret (Alexandre Barret) via ruby-core
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-88830.20201129234057.3055@ruby-lang.org \
    --to=ruby-core@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).