Skip to content

Commit 5a61c45

Browse files
authored
Add other primitive aliases (#46299)
1 parent 3083053 commit 5a61c45

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/fsharp/language-reference/basic-types.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ This topic lists the basic types that are defined in F#. These types are the mos
1010
|Type|.NET type|Description|Example|
1111
|----|---------|-----------|-------|
1212
|`bool`|<xref:System.Boolean>|Possible values are `true` and `false`.|`true`/`false`|
13-
|`byte`|<xref:System.Byte>|Values from 0 to 255.|`1uy`|
14-
|`sbyte`|<xref:System.SByte>|Values from -128 to 127.|`1y`|
13+
|`uint8`, `byte`|<xref:System.Byte>|Values from 0 to 255.|`1uy`|
14+
|`int8`, `sbyte`|<xref:System.SByte>|Values from -128 to 127.|`1y`|
1515
|`int16`|<xref:System.Int16>|Values from -32768 to 32767.|`1s`|
1616
|`uint16`|<xref:System.UInt16>|Values from 0 to 65535.|`1us`|
17-
|`int`|<xref:System.Int32>|Values from -2,147,483,648 to 2,147,483,647.|`1`|
18-
|`uint`|<xref:System.UInt32>|Values from 0 to 4,294,967,295.|`1u`|
17+
|`int32`, `int`|<xref:System.Int32>|Values from -2,147,483,648 to 2,147,483,647.|`1`|
18+
|`uint32`, `uint`|<xref:System.UInt32>|Values from 0 to 4,294,967,295.|`1u`|
1919
|`int64`|<xref:System.Int64>|Values from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.|`1L`|
2020
|`uint64`|<xref:System.UInt64>|Values from 0 to 18,446,744,073,709,551,615.|`1UL`|
2121
|`nativeint`|<xref:System.IntPtr>|A native pointer as a signed integer.|`nativeint 1`|

0 commit comments

Comments
 (0)