Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Add()
[3/3]
static unsafe uint[] System.Numerics.BigIntegerCalculator.Add
(
uint[]
left
,
uint[]
right
)
inline
static
Definition at line
270
of file
BigIntegerCalculator.cs
.
271
{
272
uint[]
array
=
new
uint[left.Length + 1];
273
fixed (uint* left2 = left)
274
{
275
fixed (uint* right2 = right)
276
{
277
fixed (uint* bits = &
array
[0])
278
{
279
Add
(left2, left.Length, right2, right.Length, bits,
array
.Length);
280
}
281
}
282
}
283
return
array
;
284
}
System.ExceptionArgument.array
@ array
System.ConsoleKey.Add
@ Add
References
System.Add
, and
System.array
.
System
Numerics
BigIntegerCalculator
Generated by
1.10.0