Skip to content

dodobrands/primitives

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dodo.Primitives

Latest release codecov

Library provides .NET primitive types:

Project goal

The main goal is Uuid implementation according to the RFC9562.

.NET provides System.Guid struct which is special case of the RFC9562 implementation. System.Guid has little-endian layout for the first 8 bytes (int32, int16, int16).

Our goal is to provide Uuid fully compliant with RFC9562 (big-endian layout) and preserve System.Guid-like behaviour. Also project contains generators to create Uuid version 7.

  var uuid = Uuid.CreateVersion7();

Project documentation