https://github.com/grohiro/xrange
golang xrange
https://github.com/grohiro/xrange
Last synced: 9 months ago
JSON representation
golang xrange
- Host: GitHub
- URL: https://github.com/grohiro/xrange
- Owner: grohiro
- License: mit
- Created: 2016-09-21T11:27:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-21T13:03:58.000Z (over 9 years ago)
- Last Synced: 2025-09-10T10:21:53.063Z (9 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xrange
`*Range` type holds a start,end value pair.
- IntRange
```go
type IntRange struct {
Start *int
End *int
}
```