defined the structure of a goalie report

This commit is contained in:
Jonathan Lamothe
2019-11-28 05:47:45 -05:00
parent 4848e54d81
commit de67628df0
3 changed files with 58 additions and 2 deletions
+5
View File
@@ -33,6 +33,7 @@ module Mtlstats.Format
, tableWith
, complexTable
, overlayLast
, showFloating
) where
import Data.List (transpose)
@@ -185,3 +186,7 @@ overlayLast
overlayLast _ [] = []
overlayLast str [l] = [overlay str l]
overlayLast str (l:ls) = l : overlayLast str ls
-- | Converts a non-integer into a string
showFloating :: Fractional n => n -> String
showFloating = undefined