XstarS.GuidModule
1.3.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package XstarS.GuidModule --version 1.3.0
NuGet\Install-Package XstarS.GuidModule -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="XstarS.GuidModule" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add XstarS.GuidModule --version 1.3.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: XstarS.GuidModule, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install XstarS.GuidModule as a Cake Addin #addin nuget:?package=XstarS.GuidModule&version=1.3.0 // Install XstarS.GuidModule as a Cake Tool #tool nuget:?package=XstarS.GuidModule&version=1.3.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
F# GUID Module
Provides RFC 4122 UUID compliant GUID operations for F#.
RFC 4122 UUID Standard
RFC 4122 defines the following five versions of UUID:
- Version 1: The time-based version, contains 60-bit timestamp and 12-bit MAC address
- Version 2: DCE Security version, contains 28-bit timestamp, 12-bit MAC address and 32-bit local ID
- Version 3: The name-based version, using MD5 hashing to compute the hash of the namespace and name
- Version 4: The randomly or pseudo-andomly generated version, equivalent to
Guid.NewGuid()
in .NET - Version 5: The name-based version, using SHA-1 hashing to compute the hash of the namespace and name
There is also a special nil UUID, which is equivalent to Guid.Empty
in .NET.
F# GUID Module Usage
RFC 4122 GUID Generation
open XNetEx.FSharp.Core
// time-based GUID generation.
let guidV1 = Guid.newV1 ()
// randomized GUID generation.
let guidV4 = Guid.newV4 ()
// name-based GUID generation.
let guidV3 = Guid.newV3S Guid.nsDns "github.com"
let guidV5 = "github.com" |> Guid.newV5S Guid.nsDns
Common GUID Operations
open XNetEx.FSharp.Core
// GUID parsing and formatting.
let guid1 = Guid.parse "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
let guid2 = "{6ba7b810-9dad-11d1-80b4-00c04fd430c8}"
|> Guid.parseExact "B"
printfn (guid2 |> Guid.format "X")
// GUID construction and deconstruction.
let guid3 = Guid.ofFields
0x00112233 0x4455s 0x6677s (0x88uy, 0x99uy)
(0xAAuy, 0xBBuy, 0xCCuy, 0xDDuy, 0xEEuy, 0xFFuy)
let guid3Fields = guid3 |> Guid.toFields
let guid4 = Array.map byte
[| 0x00; 0x11; 0x22; 0x33; 0x44; 0x55; 0x66; 0x77
0x88; 0x99; 0xAA; 0xBB; 0xCC; 0xDD; 0xEE; 0xFF |]
|> Guid.ofBytesUuid
let guid4Bytes = Guid.toBytes guid4
assert (guid3 = guid4)
let guid5 = Array.map byte
[| 0x33; 0x22; 0x11; 0x00; 0x55; 0x44; 0x77; 0x66
0x88; 0x99; 0xAA; 0xBB; 0xCC; 0xDD; 0xEE; 0xFF |]
|> Guid.ofBytes
let guid5Bytes = Guid.toBytesUuid guid5
assert (guid3 = guid5)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- FSharp.Core (>= 7.0.0)
- XstarS.GuidGenerators (>= 1.3.0)
-
.NETStandard 2.1
- FSharp.Core (>= 7.0.0)
- XstarS.GuidGenerators (>= 1.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
2.4.1 | 84 | 10/10/2024 | |
2.4.0 | 118 | 5/12/2024 | |
2.4.0-preview | 109 | 4/20/2024 | |
2.3.1 | 115 | 3/24/2024 | |
2.3.0 | 118 | 2/24/2024 | |
2.2.1 | 133 | 2/8/2024 | |
2.2.0 | 97 | 1/26/2024 | |
2.1.2 | 115 | 1/22/2024 | |
2.1.1 | 121 | 1/20/2024 | |
2.1.0 | 127 | 1/12/2024 | |
2.0.0 | 146 | 12/24/2023 | |
2.0.0-rc-19 | 135 | 12/22/2023 | |
2.0.0-rc-16 | 111 | 12/12/2023 | |
2.0.0-rc-15 | 129 | 12/6/2023 | |
2.0.0-rc-14 | 129 | 11/26/2023 | |
2.0.0-rc-12.5 | 99 | 10/15/2023 | |
2.0.0-rc-12 | 86 | 10/15/2023 | |
2.0.0-rc-00 | 130 | 7/15/2023 | |
2.0.0-preview-04.5 | 89 | 6/4/2023 | |
2.0.0-preview-04 | 111 | 5/28/2023 | |
2.0.0-preview-03.8 | 78 | 5/20/2023 | |
2.0.0-preview-03.5 | 80 | 5/14/2023 | |
2.0.0-preview-03 | 123 | 4/15/2023 | |
2.0.0-preview-02.5 | 102 | 3/26/2023 | |
2.0.0-preview-02 | 143 | 3/4/2023 | |
2.0.0-preview-01 | 138 | 2/12/2023 | |
1.14.1 | 73 | 10/10/2024 | |
1.14.0 | 102 | 5/12/2024 | |
1.14.0-preview | 103 | 4/20/2024 | |
1.13.0 | 115 | 2/24/2024 | |
1.12.1 | 122 | 2/8/2024 | |
1.12.0 | 95 | 1/26/2024 | |
1.11.2 | 113 | 1/22/2024 | |
1.11.1 | 108 | 1/20/2024 | |
1.11.0 | 113 | 1/12/2024 | |
1.10.0 | 123 | 12/24/2023 | |
1.9.5 | 137 | 12/22/2023 | |
1.9.1 | 123 | 12/12/2023 | |
1.9.0 | 161 | 12/6/2023 | |
1.8.0 | 147 | 11/26/2023 | |
1.7.8 | 134 | 10/15/2023 | |
1.7.5 | 156 | 6/4/2023 | |
1.7.1 | 138 | 5/28/2023 | |
1.7.0 | 139 | 5/20/2023 | |
1.6.0 | 154 | 5/13/2023 | |
1.5.0 | 283 | 2/5/2023 | |
1.4.0 | 296 | 1/21/2023 | |
1.3.1 | 292 | 1/15/2023 | |
1.3.0 | 286 | 12/31/2022 | |
1.2.0 | 409 | 9/30/2022 | |
1.1.1 | 414 | 8/5/2022 | |
1.1.0 | 395 | 7/25/2022 |