How do you compose functions in PureScript?

1.8k Views Asked by At

Tried to use (.) for function composition, but it doesn't work.

import Data.String (length, trim)

trimmedLength :: String -> Int
trimmedLength = length . trim
1

There are 1 best solutions below

3
On BEST ANSWER

Function composition in PureScript is done with (<<<), not (.).

import Data.String (length, trim)

trimmedLength :: String -> Int
trimmedLength = length <<< trim