Explorar el Código

Add alternative rangePi folding in comment

Josh Bicking hace 6 años
padre
commit
ada7d5cba9
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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