瀏覽代碼

Add alternative rangePi folding in comment

Josh Bicking 6 年之前
父節點
當前提交
ada7d5cba9
共有 1 個文件被更改,包括 1 次插入0 次删除
  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