We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936e9f6 commit 4c0586fCopy full SHA for 4c0586f
src/DataFrame/DataSeries.class.st
@@ -126,6 +126,12 @@ DataSeries >> at: aKey transform: aBlock ifAbsent: exceptionBlock [
126
self at: aKey put: (aBlock value: oldValue).
127
]
128
129
+{ #category : #accessing }
130
+DataSeries >> atAll: aCollectionOfIndexes [
131
+
132
+ ^ self withIndexSelect: [ :each :index | aCollectionOfIndexes includes: index ]
133
+]
134
135
{ #category : #accessing }
136
DataSeries >> atIndex: aNumber [
137
^ self at: (self keys at: aNumber)
0 commit comments