go-xim/README.md

21 lines
511 B
Markdown
Raw Normal View History

2021-11-07 06:46:13 +00:00
# go-iid
Package **iid** provides quazi monotonicallyincreasing uniqueidentifiers.
2021-11-08 00:46:24 +00:00
The serialized form of the **IID** is safe to use as a _file_ or _directory_ name.
2021-11-07 06:46:13 +00:00
## Documention
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-iid
[![GoDoc](https://godoc.org/github.com/reiver/go-iid?status.svg)](https://godoc.org/github.com/reiver/go-iid)
## Example
Here is an example of using `package iid`:
```go
var id iid.IID = iid.Generate()
```