Forráskód Böngészése

Add alternative rangePi folding in comment

Josh Bicking 6 éve
szülő
commit
ada7d5cba9
1 módosított fájl, 1 hozzáadás és 0 törlés
  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