Open
Description
This comes up when you're looking at something like an instantiation of a generic trait. For example, the CharOffsets
structure implements Iterator<(uint, char)>
, but lots of the default methods refer to an A
type parameter, where in this case A = (uint, char)
.
http://static.rust-lang.org/doc/master/core/str/struct.CharOffsets.html
I'm not sure if we want to go all-out and to type substitution everywhere, perhaps it's good enough as-is?