Logo

Programming-Idioms

History of Idiom 7 > diff from v122 to v123

Edit summary for version 123 by Dave Mason:
[Smalltalk] items may not be strings

Version 122

2021-12-13, 13:29:03

Version 123

2021-12-27, 06:03:18

Idiom #7 Iterate over list indexes and values

Print each index i with its value x from an array-like collection items

Idiom #7 Iterate over list indexes and values

Print each index i with its value x from an array-like collection items

Variables
i,x,items
Variables
i,x,items
Extra Keywords
indices traverse traversal
Extra Keywords
indices traverse traversal
Code
items withIndexDo: [:item :index |
  Transcript showln: 'item: ' , item , ' index: ' , index].
Code
items withIndexDo: [:item :index |
  Transcript showln: 'item: ' , item asString , ' index: ' , index asString].