Project

General

Profile

Actions

Misc #15739

closed

Improvements needed to documentation of Hash#dig, Array#dig and OpenStruct#dig

Misc #15739: Improvements needed to documentation of Hash#dig, Array#dig and OpenStruct#dig

Added by CaryInVictoria (Cary Swoveland) over 6 years ago. Updated about 6 years ago.

Status:
Rejected
Assignee:
-
[ruby-core:<unknown>]

Description

The documentation of these three methods fails to explain how they interact. For example:

h = { a: [1,2,3] } h.dig(:a, 1) #=> 2 

Hash#dig is used first:

a = h.dig(:a) #=> [1,2,3] 

Then Array#dig is invoked:

a.dig(1) #=> 2 
Actions

Also available in: PDF Atom