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
currently, Cstruct.iter basically turns a buffer in to an iterable of parsed structures. Cstruct.fold then folds over such an iterable with an accumulator.
it seems like there should also be functions that iterate and map over the iterable that comes out of Cstruct.iter, and (perhaps) that the current Cstruct.iter should be renamed to Cstruct.mk_iter or somesuch.
thoughts?
The text was updated successfully, but these errors were encountered:
currently,
Cstruct.iter
basically turns a buffer in to an iterable of parsed structures.Cstruct.fold
then folds over such an iterable with an accumulator.it seems like there should also be functions that iterate and map over the iterable that comes out of
Cstruct.iter
, and (perhaps) that the currentCstruct.iter
should be renamed toCstruct.mk_iter
or somesuch.thoughts?
The text was updated successfully, but these errors were encountered: