const internal/abi.BoundsIndex

8 uses

	internal/abi (current package)
		bounds.go#L12: 	BoundsIndex      BoundsErrorCode = iota // s[x], 0 <= x < len(s) failed

	runtime
		error.go#L142: 	abi.BoundsIndex:      "index out of range [%x] with length %y",
		error.go#L155: 	abi.BoundsIndex:      "index out of range [%x]",
		panic.go#L114: 	panic(boundsError{x: int64(x), signed: true, y: y, code: abi.BoundsIndex})
		panic.go#L120: 	panic(boundsError{x: int64(x), signed: false, y: y, code: abi.BoundsIndex})
		panic.go#L217: 	if code == abi.BoundsIndex {
		panic.go#L245: 	if code == abi.BoundsIndex {
		panic.go#L277: 	if code == abi.BoundsIndex {