Last active
December 2, 2019 06:34
-
-
Save stevecj/9ace6a70370f6d1a1511 to your computer and use it in GitHub Desktop.
Ruby will destructure objects that are not arrays, but respond to #to_ary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
S=Struct.new(:a,:b) | |
ss = [S.new(1,2), S.new(3,4)] | |
p ss.map{|a,b| "#{a} #{b}" } | |
# => ["#<struct S a=1, b=2> ", "#<struct S a=3, b=4> "] | |
class S ; def to_ary ; to_a ; end ; end | |
p ss.map{|a,b| "#{a} #{b}" } | |
# => ["1 2", "3 4"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great trick ! Thanks :) I talked about your trick here : http://stackoverflow.com/a/40998675/2431728 ;)