blob: db61a4d7662c3760a747d9c12b9d9f8245dffdc7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
The current ASCII package implements general key-value parsing for types. It
is more complicated than it needs to be, especially since we have so few types.
Consider replacing the general ASCII package with something simpler. For
example, just parse values into
type Map map[string][]string
and add methods to dequeue a value for a key. Each type could then extract its
own values without too much code duplication.
|