A CUID generator written in and designed for F#, which can be used from any .NET language
Go to file
Daniel J. Summers d5e0dcfab3 Convert to Paket; Update API
Pushing towards a full release of this library with complete CUID functionality
2019-08-08 22:16:36 -05:00
.paket Convert to Paket; Update API 2019-08-08 22:16:36 -05:00
FunctionalCuid Convert to Paket; Update API 2019-08-08 22:16:36 -05:00
FunctionalCuid.Tests Convert to Paket; Update API 2019-08-08 22:16:36 -05:00
.gitignore Initial commit 2017-12-05 21:50:23 -06:00
FunctionalCuid.sln Convert to Paket; Update API 2019-08-08 22:16:36 -05:00
LICENSE Initial commit 2017-12-05 21:50:23 -06:00
paket.dependencies Convert to Paket; Update API 2019-08-08 22:16:36 -05:00
paket.lock Convert to Paket; Update API 2019-08-08 22:16:36 -05:00
README.md Convert to Paket; Update API 2019-08-08 22:16:36 -05:00

FunctionalCuid

FunctionalCuid is a CUID generator written in and designed for F#, which can be used from any .NET language.

What Is a CUID?

The best answer to that question can be found on the README from the author. The short version is that it's a Collision-resistant Unique IDentifier (CUID) that can be generated wherever it needs to be (similar to GUIDs), but also follows a format that make them ever-increasing, which means that they can be indexed by even the most rudimentary of database systems.

Installing

(nuget link here)

Usage

For F#, FunctionalCuid provides Cuid and Slug types as single-case discriminated unions, and modules to generate these types and convert them to their string representations. For string-based purposes, both Cuid and Slug also have a generateString function that returns the same value, just as a string.

In F#...

module Examples

open Cuid

/// A CUID generated as the CUID type
let generatedCuid = Cuid.generate ()

/// Creating a CUID from a string you already know. This string must be 25
/// characters long and start with "c".
let cuidFromString =
  match Cuid.fromString "cjz362bgd00005cus6t21gba0" with
  | Error msg -> invalidOp msg
  | Ok cuid -> cuid

/// The string representation of a CUID
let cuidString = Cuid.generateString ()

For the Slug type, just replace Cuid with Slug; the validation rules for Slug.fromString are simply that the string has to be between 7 and 10 characters long.

For C# and VB.NET, the syntax is a bit different. Instead of Cuid as it reads above, it will appear as CuidModule; and, as generateString is the most likely function (method) called from those languages, its compiled name uses Pascal case. The same holds true for the Slug modules as well. A C# example...

using Cuid;
// ...
var cuid = CuidModule.GenerateString();
var slug = SlugModule.GenerateString();