ucb-bar / chisel2-deprecated

chisel.eecs.berkeley.edu
388 stars 90 forks source link

Use Seq, not Iterable, when order matters #711

Closed aswaterman closed 8 years ago

aswaterman commented 8 years ago

Iterable does not guarantee any particular ordering, whereas Seq does. It should not be used when ordering actually matters.

This is technically an API-breaking change, but code that was relying on it was kind of wrong, and would break in Chisel3 anyway.