Skip to content

Commit

Permalink
creating accessors #fourth to #ninth in FMSlotMultiValueLink
Browse files Browse the repository at this point in the history
  • Loading branch information
anquetil committed Dec 5, 2023
1 parent e945c77 commit b3c3017
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/Fame-Core/FMSlotMultivalueLink.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,26 @@ FMSlotMultivalueLink >> do: aBlock [
values do: aBlock
]

{ #category : #'accessing-computed' }
FMSlotMultivalueLink >> eighth [
^ self at: 8
]

{ #category : #'accessing-computed' }
FMSlotMultivalueLink >> fifth [
^ self at: 5
]

{ #category : #'accessing-computed' }
FMSlotMultivalueLink >> first [
^ self at: 1
]

{ #category : #'accessing-computed' }
FMSlotMultivalueLink >> fourth [
^ self at: 4
]

{ #category : #comparing }
FMSlotMultivalueLink >> hash [
"From sequenceable collection"
Expand All @@ -116,6 +131,11 @@ FMSlotMultivalueLink >> last [
^ values last
]

{ #category : #'accessing-computed' }
FMSlotMultivalueLink >> ninth [
^ self at: 9
]

{ #category : #private }
FMSlotMultivalueLink >> owner: anObject slot: aFMRelationSlot [

Expand Down Expand Up @@ -145,6 +165,16 @@ FMSlotMultivalueLink >> second [
^ self at: 2
]

{ #category : #'accessing-computed' }
FMSlotMultivalueLink >> seventh [
^ self at: 7
]

{ #category : #'accessing-computed' }
FMSlotMultivalueLink >> sixth [
^ self at: 6
]

{ #category : #accessing }
FMSlotMultivalueLink >> size [

Expand Down

0 comments on commit b3c3017

Please sign in to comment.