On Sat, Mar 28, 2020 at 11:27 AM Pape, Tobias <Tobias.Pape@hpi.de> wrote:
What about

�� �� �� �� ^stringsOfLine asComponentsIn: [:ignore :string2 :string3 :string4 |
�� �� �� �� �� �� �� �� self produktbereich: string2 profitcenter: string3 bezeichnung: string4]

?

Best regards
�� �� �� �� -Tobias

Agreed, "...In:" is better than "...Do" because��the latter implies iteration in Smalltalk. (never mind ifNotNilDo: which broke the convention)

And since block arguments are called "arguments" how about

aCollection asArgumentsIn: [:arg1 :arg2 :arg3 | ... ]

- Bert -

PS: Happy Covid Bike Shedding ;)