How does the following notation works in scala:
1 :: List(2, 3) = List(2, 3).::(1) = List(1, 2, 3)
Is 1 :: List(2, 3) an infix n
1 :: List(2, 3)