RoloLudo/RoloLudo.package/DeckOfCards.class/instance/stockCardsInSuit..st
2023-11-26 11:21:51 -05:00

7 lines
233 B
Smalltalk

accessing
stockCardsInSuit: aString
| response suitCards |
response := '' writeStream.
suitCards := self stock select: [ :card | card endsWith: aString ].
suitCards do: [ :card | response nextPutAll: card ].
^ response contents