Class: Interdependence::DependencySet
- Inherits:
-
Set
- Object
- Set
- Interdependence::DependencySet
- Defined in:
- lib/interdependence/dependency_set.rb
Overview
Extension of Set that manages our dependencies
Instance Method Summary collapse
-
#clone ⇒ DependencySet
private
Clone a DependencySet and its members.
Instance Method Details
#clone ⇒ DependencySet
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Clone a DependencySet and its members
11 12 13 |
# File 'lib/interdependence/dependency_set.rb', line 11 def clone self.class.new(map(&:clone)) end |