您如何在 PureScript 中编写函数?

How do you compose functions in PureScript?

尝试使用 (.) 进行函数组合,但它不起作用。

import Data.String (length, trim)

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

PureScript 中的函数组合是使用 (<<<) 而不是 (.)

import Data.String (length, trim)

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