Project

General

Profile

Actions

Feature #19177

closed

optional offset for Array#index

Added by Dan0042 (Daniel DeLorme) over 1 year ago. Updated over 1 year ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:111181]

Description

String#index allows an optional offset:

"the quick brown fox jumps over the lazy dog".index("the")   #=> 0
"the quick brown fox jumps over the lazy dog".index("the",1) #=> 31

I was a bit surprised that Array doesn't support this and I feel it would be a very natural addition:

%w[the quick brown fox jumps over the lazy dog].index("the")   #=> 0
%w[the quick brown fox jumps over the lazy dog].index("the",1) #=> 6 instead of ArgumentError

Related issues 1 (1 open0 closed)

Related to Ruby master - Feature #17056: Array#index: Allow specifying the position to start search as in String#indexOpenActions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0