From 2dd054f17e1e3765b233f39c725b5a479b1ce843 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Sun, 26 Jan 2025 01:18:23 -0600 Subject: [PATCH] I should really run make format... --- src/Instructions/GenericInstructions.hs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Instructions/GenericInstructions.hs b/src/Instructions/GenericInstructions.hs index 3311a04..cb7acc7 100644 --- a/src/Instructions/GenericInstructions.hs +++ b/src/Instructions/GenericInstructions.hs @@ -14,7 +14,6 @@ combineTuple val tup = fst tup <> [val] <> snd tup combineTupleList :: [a] -> ([a], [a]) -> [a] combineTupleList val tup = fst tup <> val <> snd tup - insertAt :: Int -> a -> [a] -> [a] insertAt idx val xs = combineTuple val (splitAt idx xs)