forked from dotnet/dotnet-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathns-System.Numerics.xml
19 lines (14 loc) · 1.34 KB
/
ns-System.Numerics.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Namespace Name="System.Numerics">
<Docs>
<summary>Contains numeric types that complement the numeric primitives, such as <see cref="T:System.Byte" />, <see cref="T:System.Double" />, and <see cref="T:System.Int32" />, that are defined by .NET.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This namespace includes the following types:
- The <xref:System.Numerics.BigInteger> structure, which is a nonprimitive integral type that supports arbitrarily large integers. An integral primitive such as <xref:System.Byte> or <xref:System.Int32> includes a `MinValue` and a `MaxValue` property, which define the lower bound and upper bound supported by that data type. In contrast, the <xref:System.Numerics.BigInteger> structure has no lower or upper bound, and can contain the value of any integer.
- The <xref:System.Numerics.Complex> structure, which represents a complex number. A complex number is a number in the form *a* + *b*i, where *a* is the real part, and *b* is the imaginary part.
- The SIMD-enabled vector types, which include <xref:System.Numerics.Vector2>, <xref:System.Numerics.Vector3>, <xref:System.Numerics.Vector4>, <xref:System.Numerics.Matrix3x2>, <xref:System.Numerics.Matrix4x4>, <xref:System.Numerics.Plane>, and <xref:System.Numerics.Quaternion>.
]]></format>
</remarks>
</Docs>
</Namespace>