denvaar / base64

Exploring base64 encoding/decoding :rainbow:
0 stars 6 forks source link

Switch from Enum to Stream for intermediate list processing #18

Closed awj closed 5 years ago

awj commented 5 years ago

Closes #10

A lot of operations in this library walk the entire content to perform transformations. Moving from Enum to Stream gives us access to the same transformations, but without allocating a list just to hand it to something that will itself go transform that list.

denvaar commented 5 years ago

Great point!, I will check this out and it will probably be merged. Thank you @awj