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
As more collection processing code moves towards transducers, eductions are a natural next step. Perhaps a mod to standardized-arguments to realize the eduction with seq would work.
The text was updated successfully, but these errors were encountered:
That seems reasonable. I'm slowly implementing Midje's collection checkers in https://github.com/marick/structural-typing/ so that they get considerably better error handlers. I've made a note to handle eductions as you suggest.
This is unfortunate:
((contains 3) (map inc (range 4)))
=> true((contains 3) (eduction (map inc) (range 4)))
=> falseAs more collection processing code moves towards transducers, eductions are a natural next step. Perhaps a mod to
standardized-arguments
to realize the eduction withseq
would work.The text was updated successfully, but these errors were encountered: