From af754e211030b3215e1a2fb44a8318ac9e79694b Mon Sep 17 00:00:00 2001 From: Marius Bancila Date: Mon, 22 Jan 2018 11:00:52 +0200 Subject: [PATCH] update on uuid_default_generator --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d279a6..5cce75a 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Generators: | Name | Description | | ---- | ----------- | -| `uuid_default_generator` | a function object that generates new UUIDs, using an operating system method to create one (`CoCreateGuid` on Windows, `uuid_generate` on Linux, `CFUUIDCreate` on Mac) | +| `uuid_default_generator` | a function object that generates new UUIDs. Althoug the specification says this can be a type alias for another generator (that is default constructible), in this implementation it is using an operating system methods to create UUIDs (`CoCreateGuid` on Windows, `uuid_generate` on Linux, `CFUUIDCreate` on Mac) | | ` basic_uuid_random_generator` | a function object that generates version 4 UUIDs using a pseudo-random number generator engine. | | `uuid_random_generator` | a basic_uuid_random_generator using the Marsenne Twister engine, i.e. `basic_uuid_random_generator` | | `uuid_name_generator` | a function object that generates version 5, name-based UUIDs using SHA1 hashing. |