Tried to use (.)
for function composition, but it doesn't work.
import Data.String (length, trim)
trimmedLength :: String -> Int
trimmedLength = length . trim
Tried to use (.)
for function composition, but it doesn't work.
import Data.String (length, trim)
trimmedLength :: String -> Int
trimmedLength = length . trim
Copyright © 2021 Jogjafile Inc.
Function composition in PureScript is done with
(<<<)
, not(.)
.