LaihoE / SIMD-itertools

Faster implementations of standard library operations like find, filter, position etc.
168 stars 3 forks source link

Remove unnecessary Debug requirements for types #6

Closed PaulDotSH closed 4 months ago

PaulDotSH commented 4 months ago

In the actual implementations, there is the requirement that the types implement Debug, and this is not needed, this forces users to derive Debug for types that might not need it, this PR passes all the tests.

LaihoE commented 4 months ago

Thanks