Class DataMapper::RelationshipSet
In: lib/dm-core/relationship_set.rb
Parent: SubjectSet

A {SubjectSet} that keeps track of relationships defined in a {Model}

Methods

each_value   has_key?   key?   values  

Public Instance methods

A list of all relationships in this set

@deprecated use DataMapper::RelationshipSet#each instead

@yield [DataMapper::Associations::Relationship]

   all relationships in the set

@yieldparam [DataMapper::Associations::Relationship] relationship

   a relationship in the set

@return [RelationshipSet] self

@api semipublic

Check wether this RelationshipSet includes an entry with the given name

@deprecated use DataMapper::RelationshipSet#named? instead

@param [to_s] name

  the name of the entry to look for

@return [Boolean]

  true if the set contains a relationship with the given name

@api semipublic

Check wether this RelationshipSet includes an entry with the given name

@deprecated use DataMapper::RelationshipSet#named? instead

@param [to_s] name

  the name of the entry to look for

@return [Boolean]

  true if the set contains a relationship with the given name

@api semipublic

A list of all relationships in this set

@deprecated use DataMapper::RelationshipSet#each or DataMapper::RelationshipSet#to_a instead

@return [Array]

   a list of all relationships in the set

@api semipublic

[Validate]