From: fatkodima123@... Date: 2020-08-27T08:03:10+00:00 Subject: [ruby-core:99729] [Ruby master Bug#17030] Enumerable#grep{_v} should be optimized for Regexp Issue #17030 has been updated by fatkodima (Dima Fatko). Dan0042 (Daniel DeLorme) wrote in #note-15: > > So a simpler approach would be to check if the match operation's scope (in this case the method body) contains any of the regexp-related pseudo-globals. I didn't quite get it. So, to summarize, how this new approach should work? Can you elaborate in few more sentences? Does ruby already do some kind of static analysis that you can point me to? ---------------------------------------- Bug #17030: Enumerable#grep{_v} should be optimized for Regexp https://bugs.ruby-lang.org/issues/17030#change-87222 * Author: marcandre (Marc-Andre Lafortune) * Status: Open * Priority: Normal * Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: UNKNOWN ---------------------------------------- Currently, ```ruby array.select { |e| e.match?(REGEXP) } ``` is about three times faster and six times more memory efficient than ```ruby array.grep(REGEXP) ``` This is because `grep` calls `Regexp#===`, which creates useless `MatchData`. -- https://bugs.ruby-lang.org/ Unsubscribe: