2

我正在使用 ghci,当我尝试使用“inits”函数时出现错误:

Not in scope: `inits'
    Perhaps you meant `init' (imported from Prelude)

但是这个函数应该根据这个预先定义: http ://www.haskell.org/ghc/docs/6.12.2/html/libraries/base-4.2.0.1/Data-List.html

我究竟做错了什么?

4

1 回答 1

4

您需要导入Data.List

:m +Data.List
inits [[1,2],[3,4]]

或者你可以使用全名

Data.List.inits [[1,2],[3,4]]
于 2013-06-03T18:16:56.330 回答