immutable-devtools
immutable-devtools copied to clipboard
Implement support for Seq
How Seq should be displayed?
It should display up to the first N values, followed by an ellipsis if the sequence continues.
Ok, does anybody need this? :-) I'm also afraid of side effects. Can iterating of Seq have udesired side effects?
Iterating any of the containers could potentially have side-effects given the ability to define properties in JS. I think in this case it's unlikely given the nature of code using ImmutableJS (namely, very pure, functional code)
I know, but Seq is generated by function unlike other structures backed by data..