LukasHedegaard / datasetops

Fluent dataset operations, compatible with your favorite libraries
https://datasetops.readthedocs.io
MIT License
10 stars 1 forks source link

Make `custom` private #29

Closed LukasHedegaard closed 4 years ago

LukasHedegaard commented 4 years ago

The custom transform was originally intended to be wrap a user-defined lambda, to be applied to each item. However, the transform function has now been implemented in such a way, that we can pass lambdas directly. custom is thus unnecessary, and should be removed.

LukasHedegaard commented 4 years ago

Upon reinspecting the code, I see that it is used internally to wrap the lambdas. Instead of removing it, we should make it private

LukasHedegaard commented 4 years ago

Fixed in https://github.com/LukasHedegaard/datasetops/pull/30