Git Product home page Git Product logo

Comments (4)

ayang64 avatar ayang64 commented on July 23, 2024

If it doesn't exsit, adding Compare() or maybe Equal() as a method to the UUID type might be interesting too like:

if myuuid.Equal(theiruuid) {
  // do stuff
}

from uuid.

pborman avatar pborman commented on July 23, 2024

@ayang64 For equality it just is myuuid == theiruuid. Making UUIDs be comparable for equality is actually the reason that github.com/google/uuid was forked from github.com/pborman/uuid. The latter has now been rewritten to be a wrapper around the former. The former represents a UUID as an array while that latter (original) used a slice.

A Compare function (as in strings and bytes) would aid in ordering UUIDs.

@it512 Is there motivation for Compare beyond that it exists in strings and bytes?

from uuid.

ayang64 avatar ayang64 commented on July 23, 2024

@pborman - d'oh! thank you. i didn't consider that while i was typing.

from uuid.

it512 avatar it512 commented on July 23, 2024

sort and search
for exp.

package main

import (
	"bytes"
	"log"
	"slices"

	"github.com/google/uuid"
)

func Compare(a, b uuid.UUID) int {
	return bytes.Compare(a[:], b[:])
}

var uuids = []uuid.UUID{uuid.Max, uuid.Nil, uuid.New(), uuid.New()}

func main() {
	slices.SortFunc(uuids, Compare)
	log.Println(uuids)

	i, _ := slices.BinarySearchFunc(uuids, uuid.Max, Compare)
	log.Println(i)
	log.Println(uuids[i])
}

output

2024/06/30 22:36:00 [00000000-0000-0000-0000-000000000000 c0ad65fa-53a0-44e6-b605-95b4b83d2481 f9b73b88-da50-480b-acad-f41c820b57c7 ffffffff-ffff-ffff-ffff-ffffffffffff]
2024/06/30 22:36:00 3
2024/06/30 22:36:00 ffffffff-ffff-ffff-ffff-ffffffffffff

from uuid.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.