Guest User

Untitled

a guest
Jul 29th, 2012
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. irb(main):015:0> a = {b: {c: {d: 1}}}
  2. => {:b=>{:c=>{:d=>1}}}
  3. irb(main):016:0> b = [ :b, :c, :d ]
  4. => [:b, :c, :d]
  5. irb(main):017:0> c = a ; c = c[v] while ( v = ( b.any? ? b.shift : false ) )
  6. => nil
  7. irb(main):018:0> c
  8. => 1
  9. irb(main):019:0>
Advertisement
Add Comment
Please, Sign In to add comment