I wonder how many times I’ve implemented small parts of this type of functionality (though never in Julia). The package looks far nicer! Thanks. I look forward to using this later this year.
First of all, thank you for this awesome package! I’m currently using it in some research, and was wondering if there is any recommended way to include a citation? Is there any DOI or some other reference that we could point to in our paper?
The API is due for an overhaul but there is also a reason that the get prefix is there.
The rationale was that I usually want to call one of the function and save the result to a local variable:
ΔUT1 = getΔUT1(jd)
If the name of the function is the same as the thing it’s returning, the caller needs to come up with a new name for it which I wanted to avoid.
What I tend to do nowadays is to give the function the full name of the thing it’s returning so that the abbreviation remains available for local variables, e.g.