在第n个值之后拆分

时间:2016-03-21 02:57:06

标签: haskell

如何编写一个函数来在某个值之后拆分值,例如

seperate :: Int -> [x] -> ([x],[x])
seperate 3 [1,4,6,9,1,2,5,7] = ([1,4,6],[9,1,2,5,7])

1 个答案:

答案 0 :(得分:5)

您想要的功能是splitAt

只需在搜索框中输入所需的类型,即可在hoogle上找到它。 First result!