deep_dup()
Instance Public methods
Returns a deep copy of array.
1 2 3 4 5 6 | array = [ 1 , [ 2 , 3 ]] dup = array.deep_dup dup[ 1 ][ 2 ] = 4 array[ 1 ][ 2 ] # => nil dup[ 1 ][ 2 ] # => 4 |
Returns a deep copy of array.
1 2 3 4 5 6 | array = [ 1 , [ 2 , 3 ]] dup = array.deep_dup dup[ 1 ][ 2 ] = 4 array[ 1 ][ 2 ] # => nil dup[ 1 ][ 2 ] # => 4 |
Designed by : w10schools
service@w10schools.com
Please login to continue.