Is there any difference in doing a pattern match on a parameter in the following implementations, or this is just a matter of programming style? f({a, _B} = Param) -> Param. or f(Param = {a, _B}) -> Param. Thanks. Serge