Partially working scrolling below list to floor items

This commit is contained in:
2021-12-01 00:04:54 +00:00
parent 42d7ca3ba8
commit 0ed260c9b7
4 changed files with 99 additions and 56 deletions
+4
View File
@@ -1,9 +1,13 @@
module ListHelp
(module Data.List
,initOrNull
, insertOver
)where
import Data.List
initOrNull :: [a] -> [a]
initOrNull [] = []
initOrNull xs = init xs
insertOver :: Int -> a -> [a] -> [a]
insertOver i x xs = take i xs ++ x : drop (i+1) xs