SqueakByExample:A.2
A.2 Collections
FAQ 3
어떻게 OrderedCollection을 정렬하나요?
Answer
asSortedCollection에 다음 메세지를 보냅니다
#(7 2 6 1) asSortedCollection ⇒ a SortedCollection(1 2 6 7)
FAQ 4
어떻게하면 문자collection 을 스트링으로 변환할 수 있나요?
Answer
String streamContents: [:str | str nextPutAll: 'hello' asSet] ⇒ 'hleo'