Flowdock
delete_if() public

No documentation

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

Hide source
# File lib/yaml/dbm.rb, line 42
    def delete_if
        del_keys = keys.dup
        del_keys.delete_if { |k| yield( k, fetch( k ) ) == false }
        del_keys.each { |k| delete( k ) } 
        self
    end
Register or log in to add new notes.