I made a small utility class in Xojo that generates RFC 4122-compliant UUID v4 values.
Nothing fancy, but it might be useful if you need unique identifiers for things like databases, files, API keys, etc.
It supports:
Standard hexadecimal format (with or without hyphens)
I ran a test on a Mac Mini M2 Pro — this class takes 11 seconds to generate one million UUIDs, which I think is more than fast enough. Also, just because something looks more complex doesn’t mean it’s more efficient or robust — nothing beats simplicity.
I don’t understand why we should make it more complicated than that…