function PrimeNumbers(n: Integer): TVec;
Fills vector with prime numbers, starting from 2 up to the value of n.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | n | Integer |
Result: stored in self (calling object), returns self for chaining
Remarks:
Fills calling vector with prime numbers, starting from 2 up to the value of n. The memory for at least n elements is allocated. The maximum value of n is 1000. The prime numbers are fetched from a precreated table.
Examples
var a: Vector;
begin
a.PrimeNumbers(10); // a = [2,3,5,7]
end;