"Dot" operator in Haskell lets us compose one-argument functions with two-argument functions. Can also refer to the "regular" function composition operator, (.).
"Dot" operator in Haskell lets us compose one-argument functions with two-argument functions, like (\x y-> = length $ nub $ intersect x y) = ((length . nub) .) . intersect = (length . nub) .: intersect = length .: nub .: intersect
. Should be defined as infixr 9 .:
.
More here.
Can also refer to the "regular" function composition operator, (.).