16 ms·
That's not a list of Show, that's a list of a single type that instantiates Show. The difference being that in your code you can only put in a single type at a
by kimundi 11y ago
That's not a list of Show, that's a list of a single type that instantiates Show.
The difference being that in your code you can only put in a single type at a time, eg [Int] or [String], but not both Int and String under the common Show interface type.
- bodhi 11y agoAha, thanks (to twic also). Now I get it!