summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-02-24 18:13:56 +0900
committerGitHub <[email protected]>2019-02-24 18:13:56 +0900
commitad87fd22870dc48441139bd1511a5fdac7273ce4 (patch)
tree508e2dc4b11ab3550418c010ac9ab5f363e680de
parentf5cfb77078994dfbe35ef264df7e8f52cffb4a5d (diff)
parente91f3ec770e2dd5e2828e510f8566f86136d9f6a (diff)
downloadmruby-ad87fd22870dc48441139bd1511a5fdac7273ce4.tar.gz
mruby-ad87fd22870dc48441139bd1511a5fdac7273ce4.zip
Merge pull request #4295 from wataash/struct-dig
Move `Object#dig` to `Struct#dig`
-rw-r--r--mrbgems/mruby-struct/mrblib/struct.rb31
1 files changed, 15 insertions, 16 deletions
diff --git a/mrbgems/mruby-struct/mrblib/struct.rb b/mrbgems/mruby-struct/mrblib/struct.rb
index 7cf3dd3ab..c5b5354be 100644
--- a/mrbgems/mruby-struct/mrblib/struct.rb
+++ b/mrbgems/mruby-struct/mrblib/struct.rb
@@ -81,23 +81,22 @@ if Object.const_defined?(:Struct)
# 15.2.18.4.11(x)
#
alias to_s inspect
- end
- ##
- # call-seq:
- # hsh.dig(key,...) -> object
- #
- # Extracts the nested value specified by the sequence of <i>key</i>
- # objects by calling +dig+ at each step, returning +nil+ if any
- # intermediate step is +nil+.
- #
- def dig(idx,*args)
- n = self[idx]
- if args.size > 0
- n&.dig(*args)
- else
- n
+ ##
+ # call-seq:
+ # hsh.dig(key,...) -> object
+ #
+ # Extracts the nested value specified by the sequence of <i>key</i>
+ # objects by calling +dig+ at each step, returning +nil+ if any
+ # intermediate step is +nil+.
+ #
+ def dig(idx,*args)
+ n = self[idx]
+ if args.size > 0
+ n&.dig(*args)
+ else
+ n
+ end
end
end
end
-