1
0

Kernel-Collections.st 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  1. Smalltalk current createPackage: 'Kernel-Collections'!
  2. Object subclass: #Association
  3. instanceVariableNames: 'key value'
  4. package: 'Kernel-Collections'!
  5. !Association commentStamp!
  6. I represent a pair of associated objects, a key and a value. My instances can serve as entries in a dictionary.
  7. Instances can be created with the class-side method `#key:value:`!
  8. !Association methodsFor: 'accessing'!
  9. key
  10. ^ key
  11. !
  12. key: aKey
  13. key := aKey
  14. !
  15. value
  16. ^ value
  17. !
  18. value: aValue
  19. value := aValue
  20. ! !
  21. !Association methodsFor: 'comparing'!
  22. = anAssociation
  23. ^ self class = anAssociation class and: [
  24. self key = anAssociation key and: [
  25. self value = anAssociation value ]]
  26. ! !
  27. !Association methodsFor: 'printing'!
  28. printOn: aStream
  29. self key printOn: aStream.
  30. aStream nextPutAll: ' -> '.
  31. self value printOn: aStream
  32. ! !
  33. !Association class methodsFor: 'instance creation'!
  34. key: aKey value: aValue
  35. ^ self new
  36. key: aKey;
  37. value: aValue;
  38. yourself
  39. ! !
  40. Object subclass: #Collection
  41. instanceVariableNames: ''
  42. package: 'Kernel-Collections'!
  43. !Collection commentStamp!
  44. I am the abstract superclass of all classes that represent a group of elements.
  45. I provide a set of useful methods to the Collection hierarchy such as enumerating and converting methods.!
  46. !Collection methodsFor: 'accessing'!
  47. occurrencesOf: anObject
  48. "Answer how many of the receiver's elements are equal to anObject."
  49. | tally |
  50. tally := 0.
  51. self do: [ :each | anObject = each ifTrue: [ tally := tally + 1 ]].
  52. ^ tally
  53. !
  54. size
  55. self subclassResponsibility
  56. ! !
  57. !Collection methodsFor: 'adding/removing'!
  58. add: anObject
  59. self subclassResponsibility
  60. !
  61. addAll: aCollection
  62. aCollection do: [ :each |
  63. self add: each ].
  64. ^ aCollection
  65. !
  66. anyOne
  67. "Answer a representative sample of the receiver. This method can
  68. be helpful when needing to preinfer the nature of the contents of
  69. semi-homogeneous collections."
  70. self ifEmpty: [ self error: 'Collection is empty' ].
  71. self do: [ :each | ^ each ]
  72. !
  73. remove: anObject
  74. ^ self remove: anObject ifAbsent: [ self errorNotFound ]
  75. !
  76. remove: anObject ifAbsent: aBlock
  77. self subclassResponsibility
  78. !
  79. removeAll
  80. self subclassResponsibility
  81. ! !
  82. !Collection methodsFor: 'converting'!
  83. asArray
  84. ^ Array withAll: self
  85. !
  86. asJSON
  87. ^ self asArray collect: [ :each | each asJSON ]
  88. !
  89. asOrderedCollection
  90. ^ self asArray
  91. !
  92. asSet
  93. ^ Set withAll: self
  94. ! !
  95. !Collection methodsFor: 'copying'!
  96. , aCollection
  97. ^ self copy
  98. addAll: aCollection;
  99. yourself
  100. !
  101. copyWith: anObject
  102. ^ self copy add: anObject; yourself
  103. !
  104. copyWithAll: aCollection
  105. ^ self copy addAll: aCollection; yourself
  106. !
  107. copyWithoutAll: aCollection
  108. "Answer a copy of the receiver that does not contain any elements
  109. equal to those in aCollection."
  110. ^ self reject: [ :each | aCollection includes: each ]
  111. ! !
  112. !Collection methodsFor: 'enumerating'!
  113. allSatisfy: aBlock
  114. "Evaluate aBlock with the elements of the receiver.
  115. If aBlock returns false for any element return false.
  116. Otherwise return true."
  117. self do: [ :each | (aBlock value: each) ifFalse: [ ^ false ] ].
  118. ^ true
  119. !
  120. anySatisfy: aBlock
  121. "Evaluate aBlock with the elements of the receiver.
  122. If aBlock returns true for any element return true.
  123. Otherwise return false."
  124. self do: [ :each | (aBlock value: each) ifTrue: [ ^ true ] ].
  125. ^ false
  126. !
  127. collect: aBlock
  128. | stream |
  129. stream := self class new writeStream.
  130. self do: [ :each |
  131. stream nextPut: (aBlock value: each) ].
  132. ^ stream contents
  133. !
  134. detect: aBlock
  135. ^ self detect: aBlock ifNone: [ self errorNotFound ]
  136. !
  137. detect: aBlock ifNone: anotherBlock
  138. self subclassResponsibility
  139. !
  140. do: aBlock
  141. self subclassResponsibility
  142. !
  143. do: aBlock separatedBy: anotherBlock
  144. | actionBeforeElement |
  145. actionBeforeElement := [ actionBeforeElement := anotherBlock ].
  146. self do: [ :each |
  147. actionBeforeElement value.
  148. aBlock value: each ]
  149. !
  150. inject: anObject into: aBlock
  151. | result |
  152. result := anObject.
  153. self do: [ :each |
  154. result := aBlock value: result value: each ].
  155. ^ result
  156. !
  157. intersection: aCollection
  158. "Answer the set theoretic intersection of two collections."
  159. | set outputSet |
  160. set := self asSet.
  161. outputSet := Set new.
  162. aCollection do: [ :each |
  163. ((set includes: each) and: [ (outputSet includes: each) not ])
  164. ifTrue: [
  165. outputSet add: each ]].
  166. ^ self class withAll: outputSet asArray
  167. !
  168. noneSatisfy: aBlock
  169. "Evaluate aBlock with the elements of the receiver.
  170. If aBlock returns false for all elements return true.
  171. Otherwise return false"
  172. self do: [ :item | (aBlock value: item) ifTrue: [ ^ false ] ].
  173. ^ true
  174. !
  175. reject: aBlock
  176. ^ self select: [ :each | (aBlock value: each) = false ]
  177. !
  178. select: aBlock
  179. | stream |
  180. stream := self class new writeStream.
  181. self do: [ :each |
  182. (aBlock value: each) ifTrue: [
  183. stream nextPut: each ] ].
  184. ^ stream contents
  185. !
  186. select: selectBlock thenCollect: collectBlock
  187. | stream |
  188. stream := self class new writeStream.
  189. self do: [ :each |
  190. (selectBlock value: each) ifTrue: [
  191. stream nextPut: (collectBlock value: each) ] ].
  192. ^ stream contents
  193. ! !
  194. !Collection methodsFor: 'error handling'!
  195. errorNotFound
  196. self error: 'Object is not in the collection'
  197. ! !
  198. !Collection methodsFor: 'streaming'!
  199. putOn: aStream
  200. self do: [ :each | each putOn: aStream ]
  201. ! !
  202. !Collection methodsFor: 'testing'!
  203. contains: aBlock
  204. self deprecatedAPI.
  205. ^ self anySatisfy: aBlock
  206. !
  207. ifEmpty: aBlock
  208. "Evaluate the given block with the receiver as argument, answering its value if the receiver is empty, otherwise answer the receiver.
  209. Note that the fact that this method returns its argument in case the receiver is not empty allows one to write expressions like the following ones:
  210. self classifyMethodAs:
  211. (myProtocol ifEmpty: ['As yet unclassified'])"
  212. ^ self isEmpty
  213. ifTrue: aBlock
  214. ifFalse: [ self ]
  215. !
  216. ifEmpty: aBlock ifNotEmpty: anotherBlock
  217. ^ self isEmpty
  218. ifTrue: aBlock
  219. ifFalse: anotherBlock
  220. !
  221. ifNotEmpty: aBlock
  222. ^ self notEmpty
  223. ifTrue: aBlock
  224. ifFalse: [ self ]
  225. !
  226. ifNotEmpty: aBlock ifEmpty: anotherBlock
  227. ^ self notEmpty
  228. ifTrue: aBlock
  229. ifFalse: anotherBlock
  230. !
  231. includes: anObject
  232. ^ self anySatisfy: [ :each | each = anObject ]
  233. !
  234. isEmpty
  235. ^ self size = 0
  236. !
  237. notEmpty
  238. ^ self isEmpty not
  239. ! !
  240. !Collection class methodsFor: 'helios'!
  241. heliosClass
  242. ^ 'collection'
  243. ! !
  244. !Collection class methodsFor: 'instance creation'!
  245. new: anInteger
  246. ^ self new
  247. !
  248. with: anObject
  249. ^ self new
  250. add: anObject;
  251. yourself
  252. !
  253. with: anObject with: anotherObject
  254. ^ self new
  255. add: anObject;
  256. add: anotherObject;
  257. yourself
  258. !
  259. with: firstObject with: secondObject with: thirdObject
  260. ^ self new
  261. add: firstObject;
  262. add: secondObject;
  263. add: thirdObject;
  264. yourself
  265. !
  266. withAll: aCollection
  267. ^ self new
  268. addAll: aCollection;
  269. yourself
  270. ! !
  271. Collection subclass: #IndexableCollection
  272. instanceVariableNames: ''
  273. package: 'Kernel-Collections'!
  274. !IndexableCollection commentStamp!
  275. I am a key-value store collection, that is,
  276. I store values under indexes.
  277. As a rule of thumb, if a collection has `#at:` and `#at:put:`,
  278. it is an IndexableCollection.!
  279. !IndexableCollection methodsFor: 'accessing'!
  280. at: anIndex
  281. "Lookup the given index in the receiver.
  282. If it is present, answer the value stored at anIndex.
  283. Otherwise, raise an error."
  284. ^ self at: anIndex ifAbsent: [ self errorNotFound ]
  285. !
  286. at: anIndex ifAbsent: aBlock
  287. "Lookup the given index in the receiver.
  288. If it is present, answer the value stored at anIndex.
  289. Otherwise, answer the value of aBlock."
  290. self subclassResponsibility
  291. !
  292. at: aKey ifAbsentPut: aBlock
  293. ^ self at: aKey ifAbsent: [
  294. self at: aKey put: aBlock value ]
  295. !
  296. at: anIndex ifPresent: aBlock
  297. "Lookup the given index in the receiver.
  298. If it is present, answer the value of evaluating aBlock with the value stored at anIndex.
  299. Otherwise, answer nil."
  300. ^ self at: anIndex ifPresent: aBlock ifAbsent: [ nil ]
  301. !
  302. at: anIndex ifPresent: aBlock ifAbsent: anotherBlock
  303. "Lookup the given index in the receiver.
  304. If it is present, answer the value of evaluating aBlock with the value stored at anIndex.
  305. Otherwise, answer the value of anotherBlock."
  306. self subclassResponsibility
  307. !
  308. at: anIndex put: anObject
  309. "Store anObject under the given index in the receiver."
  310. self subclassResponsibility
  311. !
  312. indexOf: anObject
  313. "Lookup index at which anObject is stored in the receiver.
  314. If not present, raise an error."
  315. ^ self indexOf: anObject ifAbsent: [ self errorNotFound ]
  316. !
  317. indexOf: anObject ifAbsent: aBlock
  318. "Lookup index at which anObject is stored in the receiver.
  319. If not present, return value of executing aBlock."
  320. self subclassResponsibility
  321. ! !
  322. !IndexableCollection methodsFor: 'enumarating'!
  323. with: anotherCollection do: aBlock
  324. "Calls aBlock with every value from self
  325. and with indetically-indexed value from anotherCollection"
  326. self withIndexDo: [ :each :index |
  327. aBlock value: each value: (anotherCollection at: index) ]
  328. !
  329. withIndexDo: aBlock
  330. "Calls aBlock with every value from self
  331. and with its index as the second argument"
  332. self subclassResponsibility
  333. ! !
  334. IndexableCollection subclass: #HashedCollection
  335. instanceVariableNames: ''
  336. package: 'Kernel-Collections'!
  337. !HashedCollection commentStamp!
  338. I am a traditional JavaScript object, or a Smalltalk `Dictionary`.
  339. Unlike a `Dictionary`, I can only have strings as keys.!
  340. !HashedCollection methodsFor: 'accessing'!
  341. associations
  342. | associations |
  343. associations := #().
  344. self associationsDo: [ :each | associations add: each ].
  345. ^ associations
  346. !
  347. at: aKey ifAbsent: aBlock
  348. ^ (self includesKey: aKey)
  349. ifTrue: [ self basicAt: aKey ]
  350. ifFalse: aBlock
  351. !
  352. at: aKey ifPresent: aBlock ifAbsent: anotherBlock
  353. "Lookup the given key in the receiver.
  354. If it is present, answer the value of evaluating the oneArgBlock with the value associated with the key,
  355. otherwise answer the value of absentBlock."
  356. ^ (self includesKey: aKey)
  357. ifTrue: [ aBlock value: (self at: aKey) ]
  358. ifFalse: anotherBlock
  359. !
  360. at: aKey put: aValue
  361. ^ self basicAt: aKey put: aValue
  362. !
  363. indexOf: anObject ifAbsent: aBlock
  364. ^ self keys detect: [ :each | (self at: each) = anObject ] ifNone: aBlock
  365. !
  366. keyAtValue: anObject
  367. ^ self keyAtValue: anObject ifAbsent: [ self errorNotFound ]
  368. !
  369. keyAtValue: anObject ifAbsent: aBlock
  370. ^ self indexOf: anObject ifAbsent: aBlock
  371. !
  372. keys
  373. <return Object.keys(self)>
  374. !
  375. size
  376. ^ self keys size
  377. !
  378. values
  379. <
  380. return self._keys().map(function(key){
  381. return self._at_(key);
  382. });
  383. >
  384. ! !
  385. !HashedCollection methodsFor: 'adding/removing'!
  386. add: anAssociation
  387. self at: anAssociation key put: anAssociation value
  388. !
  389. addAll: aHashedCollection
  390. super addAll: aHashedCollection associations.
  391. ^ aHashedCollection
  392. !
  393. remove: aKey ifAbsent: aBlock
  394. ^ self removeKey: aKey ifAbsent: aBlock
  395. !
  396. removeAll
  397. ^ self keys do: [ :each | self removeKey: each ]
  398. !
  399. removeKey: aKey
  400. ^ self remove: aKey
  401. !
  402. removeKey: aKey ifAbsent: aBlock
  403. ^ (self includesKey: aKey)
  404. ifFalse: [ aBlock value ]
  405. ifTrue: [ self basicDelete: aKey ]
  406. ! !
  407. !HashedCollection methodsFor: 'comparing'!
  408. = aHashedCollection
  409. self class = aHashedCollection class ifFalse: [ ^ false ].
  410. self size = aHashedCollection size ifFalse: [ ^ false ].
  411. ^ self associations = aHashedCollection associations
  412. ! !
  413. !HashedCollection methodsFor: 'converting'!
  414. asDictionary
  415. ^ Dictionary from: self associations
  416. !
  417. asJSON
  418. | c |
  419. c := self class new.
  420. self keysAndValuesDo: [ :key :value |
  421. c at: key put: value asJSON ].
  422. ^ c
  423. ! !
  424. !HashedCollection methodsFor: 'copying'!
  425. deepCopy
  426. | copy |
  427. copy := self class new.
  428. self keysAndValuesDo: [ :key :value |
  429. copy at: key put: value deepCopy ].
  430. ^ copy
  431. !
  432. shallowCopy
  433. | copy |
  434. copy := self class new.
  435. self keysAndValuesDo: [ :key :value |
  436. copy at: key put: value ].
  437. ^ copy
  438. ! !
  439. !HashedCollection methodsFor: 'enumerating'!
  440. associationsDo: aBlock
  441. self keysAndValuesDo: [ :key :value |
  442. aBlock value: (Association key: key value: value) ]
  443. !
  444. collect: aBlock
  445. | newDict |
  446. newDict := self class new.
  447. self keysAndValuesDo: [ :key :value |
  448. newDict at: key put: (aBlock value: value) ].
  449. ^ newDict
  450. !
  451. detect: aBlock ifNone: anotherBlock
  452. ^ self values detect: aBlock ifNone: anotherBlock
  453. !
  454. do: aBlock
  455. self valuesDo: aBlock
  456. !
  457. includes: anObject
  458. ^ self values includes: anObject
  459. !
  460. keysAndValuesDo: aBlock
  461. self keysDo: [ :each |
  462. aBlock value: each value: (self at: each) ]
  463. !
  464. keysDo: aBlock
  465. self keys do: aBlock
  466. !
  467. select: aBlock
  468. | newDict |
  469. newDict := self class new.
  470. self keysAndValuesDo: [ :key :value |
  471. (aBlock value: value) ifTrue: [ newDict at: key put: value ]].
  472. ^ newDict
  473. !
  474. valuesDo: aBlock
  475. self values do: [ :value | aBlock value: value ]
  476. !
  477. withIndexDo: aBlock
  478. self keysAndValuesDo: [ :key :value | aBlock value: value value: key ]
  479. ! !
  480. !HashedCollection methodsFor: 'printing'!
  481. printOn: aStream
  482. super printOn: aStream.
  483. aStream nextPutAll: ' ('.
  484. self associations
  485. do: [ :each | each printOn: aStream ]
  486. separatedBy: [ aStream nextPutAll: ' , ' ].
  487. aStream nextPutAll: ')'
  488. ! !
  489. !HashedCollection methodsFor: 'testing'!
  490. includesKey: aKey
  491. <return self.hasOwnProperty(aKey)>
  492. ! !
  493. !HashedCollection class methodsFor: 'instance creation'!
  494. from: aCollection
  495. | newCollection |
  496. newCollection := self new.
  497. aCollection do: [ :each | newCollection add: each ].
  498. ^ newCollection
  499. !
  500. fromPairs: aCollection
  501. "This message is poorly named and has been replaced by #from:"
  502. ^ self from: aCollection
  503. !
  504. newFromPairs: aCollection
  505. "Accept an array of elements where every two elements form an
  506. association - the odd element being the key, and the even element the value."
  507. | newCollection |
  508. aCollection size even ifFalse: [
  509. self error: '#newFromPairs only accepts arrays of an even length' ].
  510. newCollection := self new.
  511. ( 1 to: aCollection size by: 2 ) do: [ :each |
  512. newCollection at: (aCollection at: each) put: (aCollection at: each + 1) ].
  513. ^ newCollection
  514. ! !
  515. HashedCollection subclass: #Dictionary
  516. instanceVariableNames: 'keys values'
  517. package: 'Kernel-Collections'!
  518. !Dictionary commentStamp!
  519. I represent a set of elements that can be viewed from one of two perspectives: a set of associations,
  520. or a container of values that are externally named where the name can be any object that responds to `=`.
  521. The external name is referred to as the key.!
  522. !Dictionary methodsFor: 'accessing'!
  523. at: aKey ifAbsent: aBlock
  524. <
  525. var index = self._positionOfKey_(aKey);
  526. return index >>=0 ? self['@values'][index] : aBlock._value();
  527. >
  528. !
  529. at: aKey put: aValue
  530. <
  531. var index = self._positionOfKey_(aKey);
  532. if(index === -1) {
  533. var keys = self['@keys'];
  534. index = keys.length;
  535. keys.push(aKey);
  536. }
  537. return self['@values'][index] = aValue;
  538. >
  539. !
  540. indexOf: anObject ifAbsent: aBlock
  541. | index |
  542. index := values
  543. indexOf: anObject
  544. ifAbsent: [ 0 ].
  545. ^ index = 0
  546. ifTrue: [ aBlock value ]
  547. ifFalse: [ keys at: index ]
  548. !
  549. keys
  550. ^ keys copy
  551. !
  552. values
  553. ^ values
  554. ! !
  555. !Dictionary methodsFor: 'adding/removing'!
  556. removeAll
  557. keys removeAll.
  558. values removeAll
  559. !
  560. removeKey: aKey ifAbsent: aBlock
  561. <
  562. var index = self._positionOfKey_(aKey);
  563. if(index === -1) {
  564. return aBlock._value()
  565. } else {
  566. var keys = self['@keys'], values = self['@values'];
  567. var value = values[index], l = keys.length;
  568. keys[index] = keys[l-1];
  569. keys.pop();
  570. values[index] = values[l-1];
  571. values.pop();
  572. return value;
  573. }
  574. >
  575. ! !
  576. !Dictionary methodsFor: 'converting'!
  577. asHashedCollection
  578. ^ HashedCollection from: self associations
  579. !
  580. asJSON
  581. ^ self asHashedCollection asJSON
  582. ! !
  583. !Dictionary methodsFor: 'enumerating'!
  584. keysAndValuesDo: aBlock
  585. ^ keys with: values do: aBlock
  586. !
  587. keysDo: aBlock
  588. ^ keys do: aBlock
  589. !
  590. valuesDo: aBlock
  591. ^ values do: aBlock
  592. ! !
  593. !Dictionary methodsFor: 'initialization'!
  594. initialize
  595. super initialize.
  596. keys := #().
  597. values := #()
  598. ! !
  599. !Dictionary methodsFor: 'private'!
  600. positionOfKey: anObject
  601. <
  602. var keys = self['@keys'];
  603. for(var i=0;i<keys.length;i++){
  604. if(keys[i].__eq(anObject)) { return i;}
  605. }
  606. return -1;
  607. >
  608. ! !
  609. !Dictionary methodsFor: 'testing'!
  610. includesKey: aKey
  611. < return self._positionOfKey_(aKey) >>= 0; >
  612. ! !
  613. IndexableCollection subclass: #SequenceableCollection
  614. instanceVariableNames: ''
  615. package: 'Kernel-Collections'!
  616. !SequenceableCollection commentStamp!
  617. I am an IndexableCollection
  618. with numeric indexes starting with 1.!
  619. !SequenceableCollection methodsFor: 'accessing'!
  620. allButFirst
  621. ^ self copyFrom: 2 to: self size
  622. !
  623. allButLast
  624. ^ self copyFrom: 1 to: self size - 1
  625. !
  626. atRandom
  627. ^ self at: self size atRandom
  628. !
  629. first
  630. ^ self at: 1
  631. !
  632. first: aNumber
  633. "Answer the first `aNumber` elements of the receiver.
  634. Raise an error if there are not enough elements in the receiver."
  635. self size < aNumber ifTrue: [ self error: 'Invalid number of elements' ].
  636. ^ self copyFrom: 1 to: aNumber
  637. !
  638. fourth
  639. ^ self at: 4
  640. !
  641. indexOf: anObject ifAbsent: aBlock
  642. <
  643. self = self._numericallyIndexable();
  644. for(var i=0; i < self.length; i++) {
  645. if(self[i].__eq(anObject)) {return i+1}
  646. };
  647. return aBlock._value();
  648. >
  649. !
  650. indexOf: anObject startingAt: start
  651. "Answer the index of the first occurence of anElement after start
  652. within the receiver. If the receiver does not contain anElement,
  653. answer 0."
  654. ^ self indexOf: anObject startingAt: start ifAbsent: [ 0 ]
  655. !
  656. indexOf: anObject startingAt: start ifAbsent: aBlock
  657. <
  658. self = self._numericallyIndexable();
  659. for(var i=start - 1; i < self.length; i++){
  660. if(self[i].__eq(anObject)) {return i+1}
  661. }
  662. return aBlock._value();
  663. >
  664. !
  665. last
  666. ^ self at: self size
  667. !
  668. last: aNumber
  669. "Answer the last aNumber elements of the receiver.
  670. Raise an error if there are not enough elements in the receiver."
  671. self size < aNumber ifTrue: [ self error: 'Invalid number of elements' ].
  672. ^ self copyFrom: self size - aNumber + 1 to: self size
  673. !
  674. second
  675. ^ self at: 2
  676. !
  677. third
  678. ^ self at: 3
  679. ! !
  680. !SequenceableCollection methodsFor: 'adding/removing'!
  681. addLast: anObject
  682. self add: anObject
  683. !
  684. removeLast
  685. ^ self remove: self last
  686. ! !
  687. !SequenceableCollection methodsFor: 'comparing'!
  688. = aCollection
  689. (self class = aCollection class and: [
  690. self size = aCollection size ]) ifFalse: [ ^ false ].
  691. self withIndexDo: [ :each :i |
  692. (aCollection at: i) = each ifFalse: [ ^ false ]].
  693. ^ true
  694. ! !
  695. !SequenceableCollection methodsFor: 'converting'!
  696. reversed
  697. self subclassResponsibility
  698. ! !
  699. !SequenceableCollection methodsFor: 'copying'!
  700. copyFrom: anIndex to: anotherIndex
  701. | range newCollection |
  702. range := anIndex to: anotherIndex.
  703. newCollection := self class new: range size.
  704. range withIndexDo: [ :each :i |
  705. newCollection at: i put: (self at: each) ].
  706. ^ newCollection
  707. !
  708. deepCopy
  709. | newCollection |
  710. newCollection := self class new: self size.
  711. self withIndexDo: [ :each :index |
  712. newCollection at: index put: each deepCopy ].
  713. ^ newCollection
  714. !
  715. shallowCopy
  716. | newCollection |
  717. newCollection := self class new: self size.
  718. self withIndexDo: [ :each :index |
  719. newCollection at: index put: each ].
  720. ^ newCollection
  721. ! !
  722. !SequenceableCollection methodsFor: 'enumerating'!
  723. detect: aBlock ifNone: anotherBlock
  724. <
  725. self = self._numericallyIndexable();
  726. for(var i = 0; i < self.length; i++)
  727. if(aBlock._value_(self[i]))
  728. return self[i];
  729. return anotherBlock._value();
  730. >
  731. !
  732. do: aBlock
  733. <
  734. self = self._numericallyIndexable();
  735. for(var i=0; i < self.length; i++) {
  736. aBlock._value_(self[i]);
  737. }
  738. >
  739. !
  740. with: anotherCollection do: aBlock
  741. <
  742. self = self._numericallyIndexable();
  743. anotherCollection = anotherCollection._numericallyIndexable();
  744. for(var i=0; i<self.length; i++) {
  745. aBlock._value_value_(self[i], anotherCollection[i]);
  746. }
  747. >
  748. !
  749. withIndexDo: aBlock
  750. <
  751. self = self._numericallyIndexable();
  752. for(var i=0; i < self.length; i++) {
  753. aBlock._value_value_(self[i], i+1);
  754. }
  755. >
  756. ! !
  757. !SequenceableCollection methodsFor: 'private'!
  758. numericallyIndexable
  759. "This is an internal converting message.
  760. It answeres a representation of the receiver
  761. that can use foo[i] in JavaScript code.
  762. It fixes IE8, where boxed String is unable
  763. to numerically index its characters,
  764. but primitive string can."
  765. self subclassResponsibility
  766. ! !
  767. !SequenceableCollection methodsFor: 'streaming'!
  768. newStream
  769. ^ self streamClass on: self
  770. !
  771. readStream
  772. "For Pharo compatibility"
  773. ^ self stream
  774. !
  775. stream
  776. ^ self newStream
  777. !
  778. streamClass
  779. ^ self class streamClass
  780. !
  781. writeStream
  782. "For Pharo compatibility"
  783. ^ self stream
  784. ! !
  785. !SequenceableCollection methodsFor: 'testing'!
  786. beginsWith: prefix
  787. self size < prefix size ifTrue: [ ^ false ].
  788. ^ (self first: prefix size) = prefix
  789. !
  790. endsWith: suffix
  791. self size < suffix size ifTrue: [ ^ false ].
  792. ^ (self last: suffix size) = suffix
  793. !
  794. includes: anObject
  795. ^ (self indexOf: anObject ifAbsent: [ nil ]) notNil
  796. ! !
  797. !SequenceableCollection class methodsFor: 'accessing'!
  798. streamClass
  799. ^ Stream
  800. ! !
  801. !SequenceableCollection class methodsFor: 'streaming'!
  802. streamContents: aBlock
  803. | stream |
  804. stream := (self streamClass on: self new).
  805. aBlock value: stream.
  806. ^ stream contents
  807. ! !
  808. SequenceableCollection subclass: #Array
  809. instanceVariableNames: ''
  810. package: 'Kernel-Collections'!
  811. !Array commentStamp!
  812. I represent a collection of objects ordered by the collector. The size of arrays is dynamic.
  813. I am directly mapped to JavaScript Number.
  814. *Note* In Amber, `OrderedCollection` is an alias for `Array`.!
  815. !Array methodsFor: 'accessing'!
  816. at: anIndex ifAbsent: aBlock
  817. <
  818. return anIndex >>= 1 && anIndex <= self.length
  819. ? self[anIndex - 1]
  820. : aBlock._value()
  821. >
  822. !
  823. at: anIndex ifPresent: aBlock ifAbsent: anotherBlock
  824. <
  825. return anIndex >>= 1 && anIndex <= self.length
  826. ? aBlock._value_(self[anIndex - 1])
  827. : anotherBlock._value()
  828. >
  829. !
  830. at: anIndex put: anObject
  831. <return self[anIndex - 1] = anObject>
  832. !
  833. size
  834. <return self.length>
  835. ! !
  836. !Array methodsFor: 'adding/removing'!
  837. add: anObject
  838. <self.push(anObject); return anObject;>
  839. !
  840. addFirst: anObject
  841. <self.unshift(anObject); return anObject;>
  842. !
  843. remove: anObject ifAbsent: aBlock
  844. | index |
  845. index := self indexOf: anObject ifAbsent: 0.
  846. ^ index = 0
  847. ifFalse: [ self removeIndex: index. anObject ]
  848. ifTrue: [ aBlock value ]
  849. !
  850. removeAll
  851. <self.length = 0>
  852. !
  853. removeFrom: aNumber to: anotherNumber
  854. <self.splice(aNumber -1, anotherNumber - aNumber + 1)>
  855. !
  856. removeIndex: anInteger
  857. <self.splice(anInteger - 1, 1)>
  858. !
  859. removeLast
  860. <return self.pop();>
  861. ! !
  862. !Array methodsFor: 'converting'!
  863. asJavascript
  864. ^ '[', ((self collect: [:each | each asJavascript ]) join: ', '), ']'
  865. !
  866. reversed
  867. <return self._copy().reverse()>
  868. ! !
  869. !Array methodsFor: 'enumerating'!
  870. collect: aBlock
  871. "Optimized version"
  872. <return self.map(function(each) {return aBlock._value_(each)})>
  873. !
  874. join: aString
  875. <return self.join(aString)>
  876. !
  877. select: aBlock
  878. "Optimized version"
  879. <
  880. var result = self.klass._new();
  881. for(var i=0; i<self.length; i++) {
  882. if(aBlock._value_(self[i])) {
  883. result.push(self[i]);
  884. }
  885. }
  886. return result;
  887. >
  888. !
  889. sort
  890. ^ self basicPerform: 'sort'
  891. !
  892. sort: aBlock
  893. <
  894. return self.sort(function(a, b) {
  895. if(aBlock._value_value_(a,b)) {return -1} else {return 1}
  896. })
  897. >
  898. !
  899. sorted
  900. ^ self copy sort
  901. !
  902. sorted: aBlock
  903. ^ self copy sort: aBlock
  904. ! !
  905. !Array methodsFor: 'printing'!
  906. printOn: aStream
  907. super printOn: aStream.
  908. aStream nextPutAll: ' ('.
  909. self
  910. do: [ :each | each printOn: aStream ]
  911. separatedBy: [ aStream nextPutAll: ' ' ].
  912. aStream nextPutAll: ')'
  913. ! !
  914. !Array methodsFor: 'private'!
  915. numericallyIndexable
  916. ^ self
  917. ! !
  918. !Array class methodsFor: 'instance creation'!
  919. new: anInteger
  920. <return new Array(anInteger)>
  921. !
  922. with: anObject
  923. ^ (self new: 1)
  924. at: 1 put: anObject;
  925. yourself
  926. !
  927. with: anObject with: anObject2
  928. ^ (self new: 2)
  929. at: 1 put: anObject;
  930. at: 2 put: anObject2;
  931. yourself
  932. !
  933. with: anObject with: anObject2 with: anObject3
  934. ^ (self new: 3)
  935. at: 1 put: anObject;
  936. at: 2 put: anObject2;
  937. at: 3 put: anObject3;
  938. yourself
  939. !
  940. withAll: aCollection
  941. | instance index |
  942. index := 1.
  943. instance := self new: aCollection size.
  944. aCollection do: [ :each |
  945. instance at: index put: each.
  946. index := index + 1 ].
  947. ^ instance
  948. ! !
  949. SequenceableCollection subclass: #CharacterArray
  950. instanceVariableNames: ''
  951. package: 'Kernel-Collections'!
  952. !CharacterArray commentStamp!
  953. I am the abstract superclass of string-like collections.!
  954. !CharacterArray methodsFor: 'accessing'!
  955. at: anIndex put: anObject
  956. self errorReadOnly
  957. ! !
  958. !CharacterArray methodsFor: 'adding/removing'!
  959. add: anObject
  960. self errorReadOnly
  961. !
  962. remove: anObject
  963. self errorReadOnly
  964. ! !
  965. !CharacterArray methodsFor: 'converting'!
  966. asLowercase
  967. ^ self class fromString: self asString asLowercase
  968. !
  969. asNumber
  970. ^ self asString asNumber
  971. !
  972. asString
  973. ^ self subclassResponsibility
  974. !
  975. asSymbol
  976. ^ self asString
  977. !
  978. asUppercase
  979. ^ self class fromString: self asString asUppercase
  980. ! !
  981. !CharacterArray methodsFor: 'copying'!
  982. , aString
  983. ^ self asString, aString asString
  984. ! !
  985. !CharacterArray methodsFor: 'error handling'!
  986. errorReadOnly
  987. self error: 'Object is read-only'
  988. ! !
  989. !CharacterArray methodsFor: 'printing'!
  990. printOn: aStream
  991. self asString printOn: aStream
  992. ! !
  993. !CharacterArray methodsFor: 'streaming'!
  994. putOn: aStream
  995. aStream nextPutString: self
  996. ! !
  997. !CharacterArray class methodsFor: 'instance creation'!
  998. fromString: aString
  999. self subclassResponsibility
  1000. ! !
  1001. CharacterArray subclass: #String
  1002. instanceVariableNames: ''
  1003. package: 'Kernel-Collections'!
  1004. !String commentStamp!
  1005. I am an indexed collection of Characters. Unlike most Smalltalk dialects, Amber doesn't provide the Character class. Instead, elements of a String are single character strings.
  1006. String inherits many useful methods from its hierarchy, such as
  1007. `Collection >> #,`!
  1008. !String methodsFor: 'accessing'!
  1009. asciiValue
  1010. <return self.charCodeAt(0);>
  1011. !
  1012. at: anIndex ifAbsent: aBlock
  1013. <return String(self)[anIndex - 1] || aBlock._value()>
  1014. !
  1015. at: anIndex ifPresent: aBlock ifAbsent: anotherBlock
  1016. <
  1017. var result = String(self)[anIndex - 1];
  1018. return result ? aBlock._value_(result) : anotherBlock._value();
  1019. >
  1020. !
  1021. charCodeAt: anInteger
  1022. <return self.charCodeAt(anInteger - 1)>
  1023. !
  1024. identityHash
  1025. ^ self, 's'
  1026. !
  1027. size
  1028. <return self.length>
  1029. ! !
  1030. !String methodsFor: 'comparing'!
  1031. < aString
  1032. <return String(self) < aString._asString()>
  1033. !
  1034. <= aString
  1035. <return String(self) <= aString._asString()>
  1036. !
  1037. = aString
  1038. <
  1039. if(typeof aString === 'undefined') { return false }
  1040. if(!!aString._isString || !! aString._isString()) {
  1041. return false;
  1042. }
  1043. return String(self) === String(aString)
  1044. >
  1045. !
  1046. == aString
  1047. ^ self = aString
  1048. !
  1049. > aString
  1050. <return String(self) >> aString._asString()>
  1051. !
  1052. >= aString
  1053. <return String(self) >>= aString._asString()>
  1054. ! !
  1055. !String methodsFor: 'converting'!
  1056. asJSON
  1057. ^ self
  1058. !
  1059. asJavascript
  1060. <
  1061. if(self.search(/^[a-zA-Z0-9_:.$ ]*$/) == -1)
  1062. return "\"" + self.replace(/[\x00-\x1f"\\\x7f-\x9f]/g, function(ch){var c=ch.charCodeAt(0);return "\\x"+("0"+c.toString(16)).slice(-2)}) + "\"";
  1063. else
  1064. return "\"" + self + "\"";
  1065. >
  1066. !
  1067. asLowercase
  1068. <return self.toLowerCase()>
  1069. !
  1070. asMutator
  1071. "Answer a setter selector. For example,
  1072. #name asMutator returns #name:"
  1073. self last = ':' ifFalse: [ ^ self, ':' ].
  1074. ^ self
  1075. !
  1076. asNumber
  1077. <return Number(self)>
  1078. !
  1079. asRegexp
  1080. ^ RegularExpression fromString: self
  1081. !
  1082. asSelector
  1083. <return smalltalk.selector(self)>
  1084. !
  1085. asString
  1086. ^ self
  1087. !
  1088. asSymbol
  1089. ^ self
  1090. !
  1091. asUppercase
  1092. <return self.toUpperCase()>
  1093. !
  1094. capitalized
  1095. ^ self isEmpty
  1096. ifTrue: [ self ]
  1097. ifFalse: [ self first asUppercase, self allButFirst ]
  1098. !
  1099. crlfSanitized
  1100. ^ self lines join: String lf
  1101. !
  1102. escaped
  1103. <return escape(self)>
  1104. !
  1105. reversed
  1106. <return self.split("").reverse().join("")>
  1107. !
  1108. unescaped
  1109. <return unescape(self)>
  1110. !
  1111. uriComponentDecoded
  1112. <return decodeURIComponent(self)>
  1113. !
  1114. uriComponentEncoded
  1115. <return encodeURIComponent(self)>
  1116. !
  1117. uriDecoded
  1118. <return decodeURI(self)>
  1119. !
  1120. uriEncoded
  1121. <return encodeURI(self)>
  1122. ! !
  1123. !String methodsFor: 'copying'!
  1124. , aString
  1125. <return String(self) + aString>
  1126. !
  1127. copyFrom: anIndex to: anotherIndex
  1128. <return self.substring(anIndex - 1, anotherIndex)>
  1129. !
  1130. deepCopy
  1131. ^ self shallowCopy
  1132. !
  1133. shallowCopy
  1134. ^ self class fromString: self
  1135. ! !
  1136. !String methodsFor: 'printing'!
  1137. printNl
  1138. <console.log(self)>
  1139. !
  1140. printOn: aStream
  1141. aStream
  1142. nextPutAll: '''';
  1143. nextPutAll: self;
  1144. nextPutAll: ''''
  1145. ! !
  1146. !String methodsFor: 'private'!
  1147. numericallyIndexable
  1148. <return String(self)>
  1149. ! !
  1150. !String methodsFor: 'regular expressions'!
  1151. match: aRegexp
  1152. <return self.search(aRegexp) !!= -1>
  1153. !
  1154. matchesOf: aRegularExpression
  1155. <return self.match(aRegularExpression)>
  1156. !
  1157. replace: aString with: anotherString
  1158. ^ self replaceRegexp: (RegularExpression fromString: aString flag: 'g') with: anotherString
  1159. !
  1160. replaceRegexp: aRegexp with: aString
  1161. <return self.replace(aRegexp, aString)>
  1162. !
  1163. trimBoth
  1164. ^ self trimBoth: '\s'
  1165. !
  1166. trimBoth: separators
  1167. ^ (self trimLeft: separators) trimRight: separators
  1168. !
  1169. trimLeft
  1170. ^ self trimLeft: '\s'
  1171. !
  1172. trimLeft: separators
  1173. ^ self replaceRegexp: (RegularExpression fromString: '^[', separators, ']+' flag: 'g') with: ''
  1174. !
  1175. trimRight
  1176. ^ self trimRight: '\s'
  1177. !
  1178. trimRight: separators
  1179. ^ self replaceRegexp: (RegularExpression fromString: '[', separators, ']+$' flag: 'g') with: ''
  1180. ! !
  1181. !String methodsFor: 'split join'!
  1182. join: aCollection
  1183. ^ String
  1184. streamContents: [ :stream | aCollection
  1185. do: [ :each | stream nextPutAll: each asString ]
  1186. separatedBy: [ stream nextPutAll: self ]]
  1187. !
  1188. lineIndicesDo: aBlock
  1189. "execute aBlock with 3 arguments for each line:
  1190. - start index of line
  1191. - end index of line without line delimiter
  1192. - end index of line including line delimiter(s) CR, LF or CRLF"
  1193. | cr lf start sz nextLF nextCR |
  1194. start := 1.
  1195. sz := self size.
  1196. cr := String cr.
  1197. nextCR := self indexOf: cr startingAt: 1.
  1198. lf := String lf.
  1199. nextLF := self indexOf: lf startingAt: 1.
  1200. [ start <= sz ] whileTrue: [
  1201. (nextLF = 0 and: [ nextCR = 0 ])
  1202. ifTrue: [ "No more CR, nor LF, the string is over"
  1203. aBlock value: start value: sz value: sz.
  1204. ^ self ].
  1205. (nextCR = 0 or: [ 0 < nextLF and: [ nextLF < nextCR ] ])
  1206. ifTrue: [ "Found a LF"
  1207. aBlock value: start value: nextLF - 1 value: nextLF.
  1208. start := 1 + nextLF.
  1209. nextLF := self indexOf: lf startingAt: start ]
  1210. ifFalse: [ 1 + nextCR = nextLF
  1211. ifTrue: [ "Found a CR-LF pair"
  1212. aBlock value: start value: nextCR - 1 value: nextLF.
  1213. start := 1 + nextLF.
  1214. nextCR := self indexOf: cr startingAt: start.
  1215. nextLF := self indexOf: lf startingAt: start ]
  1216. ifFalse: [ "Found a CR"
  1217. aBlock value: start value: nextCR - 1 value: nextCR.
  1218. start := 1 + nextCR.
  1219. nextCR := self indexOf: cr startingAt: start ] ]]
  1220. !
  1221. lineNumber: anIndex
  1222. "Answer a string containing the characters in the given line number."
  1223. | lineCount |
  1224. lineCount := 0.
  1225. self lineIndicesDo: [ :start :endWithoutDelimiters :end |
  1226. (lineCount := lineCount + 1) = anIndex ifTrue: [ ^ self copyFrom: start to: endWithoutDelimiters ]].
  1227. ^ nil
  1228. !
  1229. lines
  1230. "Answer an array of lines composing this receiver without the line ending delimiters."
  1231. | lines |
  1232. lines := Array new.
  1233. self linesDo: [ :aLine | lines add: aLine ].
  1234. ^ lines
  1235. !
  1236. linesDo: aBlock
  1237. "Execute aBlock with each line in this string. The terminating line
  1238. delimiters CR, LF or CRLF pairs are not included in what is passed to aBlock"
  1239. self lineIndicesDo: [ :start :endWithoutDelimiters :end |
  1240. aBlock value: (self copyFrom: start to: endWithoutDelimiters) ]
  1241. !
  1242. subStrings: aString
  1243. ^ self tokenize: aString
  1244. !
  1245. tokenize: aString
  1246. <return self.split(aString)>
  1247. ! !
  1248. !String methodsFor: 'testing'!
  1249. includesSubString: subString
  1250. <return self.indexOf(subString) !!= -1>
  1251. !
  1252. isCapitalized
  1253. ^ self first asUppercase == self first
  1254. !
  1255. isImmutable
  1256. ^ true
  1257. !
  1258. isString
  1259. ^ true
  1260. !
  1261. isVowel
  1262. "Answer true if the receiver is a one character string containing a voyel"
  1263. ^ self size = 1 and: [ 'aeiou' includes: self asLowercase ]
  1264. ! !
  1265. !String class methodsFor: 'accessing'!
  1266. cr
  1267. <return '\r'>
  1268. !
  1269. crlf
  1270. <return '\r\n'>
  1271. !
  1272. esc
  1273. ^ self fromCharCode: 27
  1274. !
  1275. lf
  1276. <return '\n'>
  1277. !
  1278. space
  1279. <return ' '>
  1280. !
  1281. streamClass
  1282. ^ StringStream
  1283. !
  1284. tab
  1285. <return '\t'>
  1286. ! !
  1287. !String class methodsFor: 'instance creation'!
  1288. fromCharCode: anInteger
  1289. <return String.fromCharCode(anInteger)>
  1290. !
  1291. fromString: aString
  1292. <return String(aString)>
  1293. !
  1294. value: aUTFCharCode
  1295. <return String.fromCharCode(aUTFCharCode);>
  1296. ! !
  1297. !String class methodsFor: 'random'!
  1298. random
  1299. "Returns random alphanumeric string beginning with letter"
  1300. <return (Math.random()*(22/32)+(10/32)).toString(32).slice(2);>
  1301. !
  1302. randomNotIn: aString
  1303. | result |
  1304. [ result := self random. aString includesSubString: result ] whileTrue.
  1305. ^ result
  1306. ! !
  1307. Collection subclass: #Set
  1308. instanceVariableNames: 'elements'
  1309. package: 'Kernel-Collections'!
  1310. !Set commentStamp!
  1311. I represent an unordered set of objects without duplicates.!
  1312. !Set methodsFor: 'accessing'!
  1313. size
  1314. ^ elements size
  1315. ! !
  1316. !Set methodsFor: 'adding/removing'!
  1317. add: anObject
  1318. <
  1319. var found;
  1320. for(var i=0; i < self['@elements'].length; i++) {
  1321. if(_st(anObject).__eq(self['@elements'][i])) {
  1322. found = true;
  1323. break;
  1324. }
  1325. }
  1326. if(!!found) {self['@elements'].push(anObject)}
  1327. >
  1328. !
  1329. remove: anObject
  1330. elements remove: anObject
  1331. !
  1332. remove: anObject ifAbsent: aBlock
  1333. elements remove: anObject ifAbsent: aBlock
  1334. !
  1335. removeAll
  1336. elements removeAll
  1337. ! !
  1338. !Set methodsFor: 'comparing'!
  1339. = aCollection
  1340. self class = aCollection class ifFalse: [ ^ false ].
  1341. self size = aCollection size ifFalse: [ ^ false ].
  1342. self do: [ :each | (aCollection includes: each) ifFalse: [ ^ false ] ].
  1343. ^ true
  1344. ! !
  1345. !Set methodsFor: 'converting'!
  1346. asArray
  1347. ^ elements copy
  1348. ! !
  1349. !Set methodsFor: 'enumerating'!
  1350. collect: aBlock
  1351. ^ self class withAll: (elements collect: aBlock)
  1352. !
  1353. detect: aBlock ifNone: anotherBlock
  1354. ^ elements detect: aBlock ifNone: anotherBlock
  1355. !
  1356. do: aBlock
  1357. elements do: aBlock
  1358. !
  1359. select: aBlock
  1360. | collection |
  1361. collection := self class new.
  1362. self do: [ :each |
  1363. (aBlock value: each) ifTrue: [
  1364. collection add: each ]].
  1365. ^ collection
  1366. ! !
  1367. !Set methodsFor: 'initialization'!
  1368. initialize
  1369. super initialize.
  1370. elements := #()
  1371. ! !
  1372. !Set methodsFor: 'printing'!
  1373. printOn: aStream
  1374. super printOn: aStream.
  1375. aStream nextPutAll: ' ('.
  1376. self
  1377. do: [ :each | each printOn: aStream ]
  1378. separatedBy: [ aStream nextPutAll: ' ' ].
  1379. aStream nextPutAll: ')'
  1380. ! !
  1381. !Set methodsFor: 'testing'!
  1382. includes: anObject
  1383. ^ elements includes: anObject
  1384. ! !
  1385. Object subclass: #Queue
  1386. instanceVariableNames: 'read readIndex write'
  1387. package: 'Kernel-Collections'!
  1388. !Queue commentStamp!
  1389. I am a one-sided queue.
  1390. ## Usage
  1391. Use `#nextPut:` to add items to the queue.
  1392. Use `#next` or `#nextIfAbsent:` to get (and remove) the next item in the queue.
  1393. ## Implementation notes
  1394. A Queue uses two OrderedCollections inside,
  1395. `read` is at the front, is not modified and only read using `readIndex`.
  1396. `write` is at the back and is appended new items.
  1397. When `read` is exhausted, `write` is promoted to `read` and new `write` is created.
  1398. As a consequence, no data moving is done by me, write appending may do data moving
  1399. when growing `write`, but this is left to engine to implement as good as it chooses to.!
  1400. !Queue methodsFor: 'accessing'!
  1401. next
  1402. ^ self nextIfAbsent: [ self error: 'Cannot read from empty Queue.' ]
  1403. !
  1404. nextIfAbsent: aBlock
  1405. | result |
  1406. result := read at: readIndex ifAbsent: [
  1407. write isEmpty ifTrue: [
  1408. readIndex > 1 ifTrue: [ read := #(). readIndex := 1 ].
  1409. ^ aBlock value ].
  1410. read := write.
  1411. readIndex := 1.
  1412. write := OrderedCollection new.
  1413. read first ].
  1414. read at: readIndex put: nil.
  1415. readIndex := readIndex + 1.
  1416. ^ result
  1417. !
  1418. nextPut: anObject
  1419. write add: anObject
  1420. ! !
  1421. !Queue methodsFor: 'initialization'!
  1422. initialize
  1423. super initialize.
  1424. read := OrderedCollection new.
  1425. write := OrderedCollection new.
  1426. readIndex := 1
  1427. ! !
  1428. Object subclass: #RegularExpression
  1429. instanceVariableNames: ''
  1430. package: 'Kernel-Collections'!
  1431. !RegularExpression commentStamp!
  1432. I represent a regular expression object. My instances are JavaScript `RegExp` object.!
  1433. !RegularExpression methodsFor: 'evaluating'!
  1434. compile: aString
  1435. <return self.compile(aString)>
  1436. !
  1437. exec: aString
  1438. <return self.exec(aString) || nil>
  1439. !
  1440. test: aString
  1441. <return self.test(aString)>
  1442. ! !
  1443. !RegularExpression class methodsFor: 'instance creation'!
  1444. fromString: aString
  1445. ^ self fromString: aString flag: ''
  1446. !
  1447. fromString: aString flag: anotherString
  1448. <return new RegExp(aString, anotherString)>
  1449. ! !
  1450. Object subclass: #Stream
  1451. instanceVariableNames: 'collection position streamSize'
  1452. package: 'Kernel-Collections'!
  1453. !Stream commentStamp!
  1454. I represent an accessor for a sequence of objects. This sequence is referred to as my "contents".
  1455. My instances are read/write streams to the contents sequence collection.!
  1456. !Stream methodsFor: 'accessing'!
  1457. collection
  1458. ^ collection
  1459. !
  1460. contents
  1461. ^ self collection
  1462. copyFrom: 1
  1463. to: self streamSize
  1464. !
  1465. position
  1466. ^ position ifNil: [ position := 0 ]
  1467. !
  1468. position: anInteger
  1469. position := anInteger
  1470. !
  1471. setCollection: aCollection
  1472. collection := aCollection
  1473. !
  1474. setStreamSize: anInteger
  1475. streamSize := anInteger
  1476. !
  1477. size
  1478. ^ self streamSize
  1479. !
  1480. streamSize
  1481. ^ streamSize
  1482. ! !
  1483. !Stream methodsFor: 'actions'!
  1484. close
  1485. !
  1486. flush
  1487. !
  1488. reset
  1489. self position: 0
  1490. !
  1491. resetContents
  1492. self reset.
  1493. self setStreamSize: 0
  1494. ! !
  1495. !Stream methodsFor: 'enumerating'!
  1496. do: aBlock
  1497. [ self atEnd ] whileFalse: [ aBlock value: self next ]
  1498. ! !
  1499. !Stream methodsFor: 'positioning'!
  1500. setToEnd
  1501. self position: self size
  1502. !
  1503. skip: anInteger
  1504. self position: ((self position + anInteger) min: self size max: 0)
  1505. ! !
  1506. !Stream methodsFor: 'reading'!
  1507. next
  1508. ^ self atEnd
  1509. ifTrue: [ nil ]
  1510. ifFalse: [
  1511. self position: self position + 1.
  1512. collection at: self position ]
  1513. !
  1514. next: anInteger
  1515. | tempCollection |
  1516. tempCollection := self collection class new.
  1517. anInteger timesRepeat: [
  1518. self atEnd ifFalse: [
  1519. tempCollection add: self next ]].
  1520. ^ tempCollection
  1521. !
  1522. peek
  1523. ^ self atEnd ifFalse: [
  1524. self collection at: self position + 1 ]
  1525. ! !
  1526. !Stream methodsFor: 'testing'!
  1527. atEnd
  1528. ^ self position = self size
  1529. !
  1530. atStart
  1531. ^ self position = 0
  1532. !
  1533. isEmpty
  1534. ^ self size = 0
  1535. ! !
  1536. !Stream methodsFor: 'writing'!
  1537. << anObject
  1538. self write: anObject
  1539. !
  1540. nextPut: anObject
  1541. self position: self position + 1.
  1542. self collection at: self position put: anObject.
  1543. self setStreamSize: (self streamSize max: self position)
  1544. !
  1545. nextPutAll: aCollection
  1546. aCollection do: [ :each |
  1547. self nextPut: each ]
  1548. !
  1549. nextPutString: aString
  1550. self nextPut: aString
  1551. !
  1552. write: anObject
  1553. anObject putOn: self
  1554. ! !
  1555. !Stream class methodsFor: 'instance creation'!
  1556. on: aCollection
  1557. ^ self new
  1558. setCollection: aCollection;
  1559. setStreamSize: aCollection size;
  1560. yourself
  1561. ! !
  1562. Stream subclass: #StringStream
  1563. instanceVariableNames: ''
  1564. package: 'Kernel-Collections'!
  1565. !StringStream commentStamp!
  1566. I am a Stream specific to `String` objects.!
  1567. !StringStream methodsFor: 'reading'!
  1568. next: anInteger
  1569. | tempCollection |
  1570. tempCollection := self collection class new.
  1571. anInteger timesRepeat: [
  1572. self atEnd ifFalse: [
  1573. tempCollection := tempCollection, self next ]].
  1574. ^ tempCollection
  1575. ! !
  1576. !StringStream methodsFor: 'writing'!
  1577. cr
  1578. ^ self nextPutAll: String cr
  1579. !
  1580. crlf
  1581. ^ self nextPutAll: String crlf
  1582. !
  1583. lf
  1584. ^ self nextPutAll: String lf
  1585. !
  1586. nextPut: aString
  1587. self nextPutAll: aString
  1588. !
  1589. nextPutAll: aString
  1590. | pre post |
  1591. self atEnd ifTrue: [ self setCollection: self collection, aString ] ifFalse: [
  1592. pre := self collection copyFrom: 1 to: self position.
  1593. post := self collection copyFrom: (self position + 1 + aString size) to: self collection size.
  1594. self setCollection: pre, aString, post
  1595. ].
  1596. self position: self position + aString size.
  1597. self setStreamSize: (self streamSize max: self position)
  1598. !
  1599. nextPutString: aString
  1600. self nextPutAll: aString
  1601. !
  1602. space
  1603. self nextPut: ' '
  1604. !
  1605. tab
  1606. ^ self nextPutAll: String tab
  1607. ! !