project-machine / disko

Disk Operations API in Go
Apache License 2.0
13 stars 9 forks source link

use ints instead of uints #65

Open smoser opened 4 years ago

smoser commented 4 years ago

@tych0 suggested in https://github.com/anuvu/disko/pull/62 that we change my use of uint to int.

I had just used uints for places that I expected only a positive number, but the standard library has some things available to ints that are not available to uints (such as intSlice).