An open API service indexing awesome lists of open source software.

https://github.com/grohiro/xrange

golang xrange
https://github.com/grohiro/xrange

Last synced: 9 months ago
JSON representation

golang xrange

Awesome Lists containing this project

README

          

# xrange

`*Range` type holds a start,end value pair.

- IntRange

```go
type IntRange struct {
Start *int
End *int
}
```