Hello,
I am trying to use pow with an integer argument, but I cannot
have a bigint result, for example, ```pow(10,72)```.
Do I have to write my pow function or is there a native solution?
thanks,
Fausto
On Sunday, 2 October 2022 at 02:02:37 UTC, rassoc wrote:
On 10/2/22 00:04, Fausto via Digitalmars-d-learn wrote:
Hello,
I am trying to use pow with an integer argument, but I cannot
have a bigint result, for example, ```pow(10,72)```.
Do I have to write my pow function or is there a native
Hello all,
I am trying to rotate left an array.
I found a very basic way, and I am not sure if there is something
clever than this :) maybe using slices...
the external for represents how many times you are rotating (in
this case 2).
```d
void main()
{
import std.range;
import std.std