ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:71738] behavior of Array#dig when passed a non-numeric index?
@ 2015-11-29 23:24 Colin Kelley
  0 siblings, 0 replies; only message in thread
From: Colin Kelley @ 2015-11-29 23:24 UTC (permalink / raw)
  To: ruby-core

[-- Attachment #1: Type: text/plain, Size: 1184 bytes --]

Hello,

I am working on this gem to provide backward-compatibility of the new `dig`
method in `Hash` and `Array`.

    https://rubygems.org/gems/ruby_dig

(See the accompanying blog post for more info.
http://development.invoca.com/ruby_dig-gem-adds-hash-dig-and-array-dig-from-ruby-2-3-to-earlier-versions/
)

But I can't tell from the documentation or tests in the original commit


https://github.com/ruby/ruby/commit/29862685c0acf3a40c6b1f9e8780cbbd86cba658

what is supposed to happen if Array#dig is passed a non-numeric index. For
example:

    ['zero', 'one', 'two'].dig(:first)

It seems like the C code is just calling the `[]` operator, in which case
it would raise this exception:

    TypeError: no implicit conversion of Symbol into Integer
But it definitely seems like the spirit of `dig` that `nil` should be
returned if the expected structure isn't there.  I believe the most typical
use case for `dig` is to dig through a JSON hash and either find the result
we expected, or get `nil`.  Wouldn't it defeat the purpose of `dig` if we
had to wrap it in a `rescue`?

Can we clarify the desired behavior, then update the documentation and
tests to reflect that?

-Colin

[-- Attachment #2: Type: text/html, Size: 1937 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-11-29 22:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-29 23:24 [ruby-core:71738] behavior of Array#dig when passed a non-numeric index? Colin Kelley

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