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
I'm trying to implement this. I wrote a function named reverse and put that in src/abstractdataframe/reverse.jl. But when I try to use my function, it didn't get recognized. But I placed the same function in sort.jl and it worked only that the docstrings I wrote weren't recognized (And they didn't show up during ?reverse). Is there somekind of procedure to create new functions in a module?
I'm trying to implement this. I wrote a function named reverse and put that in src/abstractdataframe/reverse.jl. But when I try to use my function, it didn't get recognized. But I placed the same function in sort.jl and it worked only that the docstrings I wrote weren't recognized (And they didn't show up during ?reverse). Is there somekind of procedure to create new functions in a module?
I figured out that I need to add the new files that hold usable functions in ModuleName.jl file. This works fine, and now my function is working. But I didn't understand why my docstrings aren't getting shown when I use ?reverse.
The text was updated successfully, but these errors were encountered: