Closed eloots closed 4 years ago
The code still has some use cases of infix notation, for example in encoding a transformation with foldLeft:
foldLeft
(collection foldLeft initialValue) { case ... }
The code should be scanned for these and the infix notation should be changed to dot notation.
The above would then look as follows:
collection.foldLeft(initialValue) { case ... }
The code still has some use cases of infix notation, for example in encoding a transformation with
foldLeft
:The code should be scanned for these and the infix notation should be changed to dot notation.
The above would then look as follows: