Closed wer-mathurin closed 3 years ago
@SphericalKat,
very good first implementation and easy to use;
Add the capability of passing: List instead of a list of String
When providing a generic List, we must provide a getter function for the search => String Function(T)
You can also parametrize the class ExtractedResult and add a property let say final T original;
By doing this we would not require to convert the original list of Something to a list a String and convert it again to a List of Something.
Got it, I'll be working on this soon :)
Closed in f1d0d24.
@SphericalKat,
very good first implementation and easy to use;
Add the capability of passing: List instead of a list of String
When providing a generic List, we must provide a getter function for the search => String Function(T)
You can also parametrize the class ExtractedResult and add a property let say
final T original;
By doing this we would not require to convert the original list of Something to a list a String and convert it again to a List of Something.