You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a little awkward to turn an iterator of Element into a List right now. You must collect as a Sequence or Vec<Element> and then convert to a List. E.g.:
It's a little awkward to turn an iterator of
Element
into aList
right now. You must collect as aSequence
orVec<Element>
and then convert to aList
. E.g.:Since
Sequence
already implementsFromIterator<Element>
, why notSexp
andList
? It would be nice to collect directly as aList
or Sexp`. E.g.:The text was updated successfully, but these errors were encountered: