type internal/abi.BoundsErrorCode
6 uses
internal/abi (current package)
bounds.go#L9: type BoundsErrorCode uint8
bounds.go#L12: BoundsIndex BoundsErrorCode = iota // s[x], 0 <= x < len(s) failed
bounds.go#L55: func BoundsEncode(code BoundsErrorCode, signed, xIsReg, yIsReg bool, xVal, yVal int) int {
bounds.go#L86: func BoundsDecode(v int) (code BoundsErrorCode, signed, xIsReg, yIsReg bool, xVal, yVal int) {
bounds.go#L87: code = BoundsErrorCode(v % int(numBoundsCodes))
runtime
error.go#L135: code abi.BoundsErrorCode