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
First of all, thank you for this great library.
However, there's a small issue I have with it: For one of my projects I'm implementing a search for JavaDoc methods and have a class JavadocMethod with methods like getMethodName(), getClassName() and getUrl().
For searching it would be very convenient to just use the object itself for search, so I can access the url of the found method.
I'm thinking about a generic solution like this:
Ideally we implement this through additional overloads so as to not break the existing API. I'd be very grateful for a PR otherwise, I'll try and get the time to work on it (which may be a while)
First of all, thank you for this great library.
However, there's a small issue I have with it: For one of my projects I'm implementing a search for JavaDoc methods and have a class
JavadocMethod
with methods likegetMethodName()
,getClassName()
andgetUrl()
.For searching it would be very convenient to just use the object itself for search, so I can access the url of the found method.
I'm thinking about a generic solution like this:
which allows to use any object by just providing a function which maps this object to a string.
Can you imagine implementing such a feature or accept a pull requests that adds it?
The text was updated successfully, but these errors were encountered: