Flowdock
method

[]=

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: YAML::Omap
[]=( k, *rest ) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/yaml/types.rb, line 110
        def []=( k, *rest )
            val, set = rest.reverse
            if ( tmp = self.assoc( k ) ) and not set
                tmp[1] = val
            else
                self << [ k, val ] 
            end
            val
        end
Register or log in to add new notes.