OmniThreadLibrary icon indicating copy to clipboard operation
OmniThreadLibrary copied to clipboard

Parallel.For() does not support Int64 (but Delphi's TParallel.For() does)

Open GerbenAbbink opened this issue 2 years ago • 0 comments

This code

Parallel.For(0, Count).Execute(

procedure(I: Int64)
begin
end);

is not allowed: There is no overloaded version of 'Execute' that can be called with these arguments.

Delphi's TParallel.For() does support Int64.

GerbenAbbink avatar Jun 30 '22 07:06 GerbenAbbink