Skip to content

Add other primitive aliases #46299

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/fsharp/language-reference/basic-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ This topic lists the basic types that are defined in F#. These types are the mos
|Type|.NET type|Description|Example|
|----|---------|-----------|-------|
|`bool`|<xref:System.Boolean>|Possible values are `true` and `false`.|`true`/`false`|
|`byte`|<xref:System.Byte>|Values from 0 to 255.|`1uy`|
|`sbyte`|<xref:System.SByte>|Values from -128 to 127.|`1y`|
|`uint8`, `byte`|<xref:System.Byte>|Values from 0 to 255.|`1uy`|
|`int8`, `sbyte`|<xref:System.SByte>|Values from -128 to 127.|`1y`|
|`int16`|<xref:System.Int16>|Values from -32768 to 32767.|`1s`|
|`uint16`|<xref:System.UInt16>|Values from 0 to 65535.|`1us`|
|`int`|<xref:System.Int32>|Values from -2,147,483,648 to 2,147,483,647.|`1`|
|`uint`|<xref:System.UInt32>|Values from 0 to 4,294,967,295.|`1u`|
|`int32`, `int`|<xref:System.Int32>|Values from -2,147,483,648 to 2,147,483,647.|`1`|
|`uint32`, `uint`|<xref:System.UInt32>|Values from 0 to 4,294,967,295.|`1u`|
|`int64`|<xref:System.Int64>|Values from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.|`1L`|
|`uint64`|<xref:System.UInt64>|Values from 0 to 18,446,744,073,709,551,615.|`1UL`|
|`nativeint`|<xref:System.IntPtr>|A native pointer as a signed integer.|`nativeint 1`|
Expand Down
Loading