What does the declared() function do? It seems obvious but I can't find it in the manual. If it looks for the declaration of that function, what order are the files parsed? Are all of my project files scanned before the system Nim files?
when withRealTime and not declared(getTicks):
include "system/timers"
declared to check whether the symbol is available or not, like this paramCount
This is declared documentation
It's OK either way (for me, don't know for other tho). When some people don't ask it again, we can assume it's already resolved for them.
Asking something is encouraged too, some people can cross reference the issue that already posted or some more knowledgeable person can notice the current discussion too and try to answer.
Oh,this page (index page) is very useful if you want to look something in documentations. Just Ctrl+F and search the keyword of what you need to know ;)