Browse Source

Add alternative rangePi folding in comment

Josh Bicking 6 years ago
parent
commit
ada7d5cba9
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/Main.hs

+ 1 - 0
app/Main.hs

@@ -43,6 +43,7 @@ rangePi printFun (Just low) (Just high) =
     "Error: Please give a proper range."
   else
     foldr (++) [] (map printFun (drop (fromIntegral low) . take (fromIntegral high) $ hexDigits))
+    -- foldl (.) id (map (showString . printFun) (drop (fromIntegral low) . take (fromIntegral high) $ hexDigits)) ""  -- Alternative implementation: not sure about speed
 
 rangePi _ _ _  = printErr