ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:99374] [Ruby master Feature#6596] New method for Arrays : Array#indexes
       [not found] <redmine.issue-6596.20120615180505.5439@ruby-lang.org>
@ 2020-07-28 21:20 ` tyler
  2020-07-28 23:03 ` [ruby-core:99377] " tyler
  2020-07-29  1:41 ` [ruby-core:99384] [Ruby master Feature#6596] New method `Array#indexes` sawadatsuyoshi
  2 siblings, 0 replies; 3+ messages in thread
From: tyler @ 2020-07-28 21:20 UTC (permalink / raw)
  To: ruby-core

Issue #6596 has been updated by TylerRick (Tyler Rick).


I would really like to see this included in Ruby. I have wished for this method several times in the past, and again today.

What can I do to help move this proposal forward?

----------------------------------------
Feature #6596: New method for Arrays : Array#indexes
https://bugs.ruby-lang.org/issues/6596#change-86780

* Author: robin850 (Robin Dupret)
* Status: Assigned
* Priority: Normal
* Assignee: matz (Yukihiro Matsumoto)
----------------------------------------
Hello

5 days ago, I submitted a pull request on Github which provides a new method for the array objects which is Array#indexes. I have fist edit the Array#index method in order it to return an array of indexes and not a single index (which is the first occurrence it finds). I found it more logical but a user (trans) tells us that it could break the contract of Array#index so I decided to move it into Array#indexes. Eric (drbrain) tells me I should reasonning why I want to add this method ; it's just a point of view : I don't really understand why Array#index return a single index if the parameter is in the array several times. 

Examples

a = [1, 2, 3, 1]
a.indexes(1)
Return : [0, 3]
a.index(1)
Return : 0
In my opinion, it's not really logical, 1 is in the array twice

Moreover, this pull request doesn't beak anything because we don't edit the Array#index method so programms which were created with previous version of Ruby will work. 

I hope my post is complete. Have a nice day.





-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [ruby-core:99377] [Ruby master Feature#6596] New method for Arrays : Array#indexes
       [not found] <redmine.issue-6596.20120615180505.5439@ruby-lang.org>
  2020-07-28 21:20 ` [ruby-core:99374] [Ruby master Feature#6596] New method for Arrays : Array#indexes tyler
@ 2020-07-28 23:03 ` tyler
  2020-07-29  1:41 ` [ruby-core:99384] [Ruby master Feature#6596] New method `Array#indexes` sawadatsuyoshi
  2 siblings, 0 replies; 3+ messages in thread
From: tyler @ 2020-07-28 23:03 UTC (permalink / raw)
  To: ruby-core

Issue #6596 has been updated by TylerRick (Tyler Rick).


I'm not very good at writing C, but here is a reference implementation in Ruby (plus unit tests) in case it's helpful: https://github.com/rubyworks/facets/pull/294/files

This version adds `indexes` (aliased as `index_all`) to `Array`, `Enumerable`, and `Enumerator::Lazy` for completeness.

----------------------------------------
Feature #6596: New method for Arrays : Array#indexes
https://bugs.ruby-lang.org/issues/6596#change-86782

* Author: robin850 (Robin Dupret)
* Status: Assigned
* Priority: Normal
* Assignee: matz (Yukihiro Matsumoto)
----------------------------------------
Hello

5 days ago, I submitted a pull request on Github which provides a new method for the array objects which is Array#indexes. I have fist edit the Array#index method in order it to return an array of indexes and not a single index (which is the first occurrence it finds). I found it more logical but a user (trans) tells us that it could break the contract of Array#index so I decided to move it into Array#indexes. Eric (drbrain) tells me I should reasonning why I want to add this method ; it's just a point of view : I don't really understand why Array#index return a single index if the parameter is in the array several times. 

Examples

a = [1, 2, 3, 1]
a.indexes(1)
Return : [0, 3]
a.index(1)
Return : 0
In my opinion, it's not really logical, 1 is in the array twice

Moreover, this pull request doesn't beak anything because we don't edit the Array#index method so programms which were created with previous version of Ruby will work. 

I hope my post is complete. Have a nice day.





-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [ruby-core:99384] [Ruby master Feature#6596] New method `Array#indexes`
       [not found] <redmine.issue-6596.20120615180505.5439@ruby-lang.org>
  2020-07-28 21:20 ` [ruby-core:99374] [Ruby master Feature#6596] New method for Arrays : Array#indexes tyler
  2020-07-28 23:03 ` [ruby-core:99377] " tyler
@ 2020-07-29  1:41 ` sawadatsuyoshi
  2 siblings, 0 replies; 3+ messages in thread
From: sawadatsuyoshi @ 2020-07-29  1:41 UTC (permalink / raw)
  To: ruby-core

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/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-07-29  1:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <redmine.issue-6596.20120615180505.5439@ruby-lang.org>
2020-07-28 21:20 ` [ruby-core:99374] [Ruby master Feature#6596] New method for Arrays : Array#indexes tyler
2020-07-28 23:03 ` [ruby-core:99377] " tyler
2020-07-29  1:41 ` [ruby-core:99384] [Ruby master Feature#6596] New method `Array#indexes` sawadatsuyoshi

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).