[#99115] [Ruby master Bug#17023] How to prevent String memory to be relocated in ruby-ffi — larskanis@...
Issue #17023 has been reported by larskanis (Lars Kanis).
22 messages
2020/07/10
[#99375] [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings — merch-redmine@...
Issue #17055 has been reported by jeremyevans0 (Jeremy Evans).
29 messages
2020/07/28
[#101207] [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
— merch-redmine@...
2020/12/02
Issue #17055 has been updated by jeremyevans0 (Jeremy Evans).
[#101231] Re: [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
— Austin Ziegler <halostatue@...>
2020/12/03
What does this mean?
[ruby-core:99384] [Ruby master Feature#6596] New method `Array#indexes`
From:
sawadatsuyoshi@...
Date:
2020-07-29 01:41:47 UTC
List:
ruby-core #99384
Issue #6596 has been updated by sawa (Tsuyoshi Sawada). TylerRick (Tyler Rick) wrote in #note-23: > What can I do to help move this proposal forward? Provide a use case. ---------------------------------------- Feature #6596: New method `Array#indexes` https://bugs.ruby-lang.org/issues/6596#change-86791 * Author: robin850 (Robin Dupret) * Status: Assigned * Priority: Normal * Assignee: matz (Yukihiro Matsumoto) ---------------------------------------- I submitted a pull request on Github that provides a new method `Array#indexes`. It departs from `Array#index` in such a way that it returns an array of indexes and not the single first occurrence that is relevant. The reason I want this method is that I don't understand why `Array#index` returns a single index if the parameter is in the array several times. Examples ```ruby a = [1, 2, 3, 1] a.indexes(1) #=> [0, 3] a.index(1) # => 0 ``` In my opinion, it's not logical to return only a single index since `1` is in the array twice. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:[email protected]?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>