idris-0.11.2: test/interfaces001/expected
Interface MyShow
A fancy shower with a constructor
Parameters:
a -- the thing to be shown
Methods:
myShow : MyShow a => (x : a) -> String
The shower
The function is Total
Implementation constructor:
MkMyShow : (myShow : a -> String) -> MyShow a
Build a MyShow
Arguments:
(implicit) a : Type -- the thing to be shown
myShow : a -> String -- The shower
Implementations:
MyShow Integer
MkMyShow : (myShow : a -> String) -> MyShow a
Build a MyShow
Arguments:
(implicit) a : Type -- the thing to be shown
myShow : a -> String -- The shower
The function is Total