This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data Fmt = FArg Fmt | FChar Char Fmt | FEnd | |
toFmt : (fmt : List Char) -> Fmt | |
toFmt ('*' :: xs) = FArg (toFmt xs) | |
toFmt ( x :: xs) = FChar x (toFmt xs) | |
toFmt [] = FEnd | |
PrintfType : (fmt : Fmt) -> Type | |
PrintfType (FArg fmt) = ({ty : Type} -> Show ty => (obj : ty) -> PrintfType fmt) | |
PrintfType (FChar _ fmt) = PrintfType fmt |
OlderNewer