Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021
  1. # Pure Go UUID implementation
  2. This package provides immutable UUID structs and the functions
  3. NewV3, NewV4, NewV5 and Parse() for generating versions 3, 4
  4. and 5 UUIDs as specified in [RFC 4122](http://www.ietf.org/rfc/rfc4122.txt).
  5. ## Installation
  6. Use the `go` tool:
  7. $ go get github.com/nu7hatch/gouuid
  8. ## Usage
  9. See [documentation and examples](http://godoc.org/github.com/nu7hatch/gouuid)
  10. for more information.
  11. ## Copyright
  12. Copyright (C) 2011 by Krzysztof Kowalik <chris@nu7hat.ch>. See [COPYING](https://github.com/nu7hatch/gouuid/tree/master/COPYING)
  13. file for details.