Hello!
Studying the source code (PortableApps.comLauncher), I came across a ${|} and don't understand meaning of ${|} also not can find documentation of this.
This like as OR? When i see this into end of expression - not sure that understand meaning. Finding in source code, this forum, help files and search engine not get results.
You are here
Meaning of ${|} define\variable
December 1, 2017 - 4:35pm
#1
Meaning of ${|} define\variable
That little define is made available thanks to the LogicLib.nsh header file.
You will usually see this used along side the
${IfThen}
define.Here are some examples:
So you can see that
${|}
is just a means for the${IfThen}
to end it's conditional instructions.You can always search the LogicLib's source code to see for yourself.
Hope this helps!
daemon.devin
Ooh, at last it made sense! It's strange that I did not notice this dependence. Thank you very much!