Skip to content Skip to sidebar Skip to footer
Showing posts with the label Argument Passing

List As A Function Argument - Modifications Discarded

I have a following code def hidePasswords(L, password): for elem in L: if elem == passw… Read more List As A Function Argument - Modifications Discarded

Is There A Scala Equivalent Of The Python List Unpack (a.k.a. "*") Operator?

In Python, we have the star (or '*' or 'unpack') operator, that allows us to unpack… Read more Is There A Scala Equivalent Of The Python List Unpack (a.k.a. "*") Operator?