Logo

Programming-Idioms

History of Idiom 7 > diff from v114 to v115

Edit summary for version 115 by programming-idioms.org:
[Smalltalk] Please link to a doc page specific to this implementation

Version 114

2021-09-03, 13:43:11

Version 115

2021-09-06, 08:16:02

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 , ' index: ' , index].
Doc URL
https://squeak.org/documentation/terse_guide/