this post was submitted on 07 Oct 2025
424 points (99.1% liked)

Programmer Humor

26898 readers
409 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] rikudou@lemmings.world 3 points 1 week ago (1 children)

The first UUID is a local type, the second is the name of an embedded struct, the third is the name of the variable.

The struct looks something like this (writing this on my phone)

type UUID struct { uuid.UUID }

So, basically, this is a custom wrapper for a third party UUID implementation.

[โ€“] four@lemmy.zip 1 points 1 week ago

Ahh, that makes sense then