The method definition for TParallel.&For requires the ampersand to leave the reserved word ( for ). You do not need to use it when calling a method, unless there is ambiguity.
For example:
with TParallel do begin &For(...) // etc end;
I canβt imagine why you would ever want to do this.
If this were in one of your own classes, remember that any internal calls to the escaped method will require either an ampersand or an explicit class or instance identifier ( self ).
TParallel closed class, so the point is controversial in this case. You will never work in it or in a descendant class.
J ...
source share