Skip to content

Commit

Permalink
v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oscbyspro committed Jun 30, 2023
1 parent 77ae120 commit dd60042
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Large number arithmetic in Swift.

| Package | Swift | iOS | iPadOS | Mac Catalyst | macOS | tvOS | watchOS |
|:-------:|:-----:|:----:|:------:|:------------:|:-----:|:----:|:-------:|
| 3.0.0 | 5.8 | 16.4 | 16.4 | 16.4 | 13.3 | 16.4 | 9.4 |
| 4.0.0 | 5.8 | 16.4 | 16.4 | 16.4 | 13.3 | 16.4 | 9.4 |

## ANKCoreKit ([Sources][COR/S], [Tests][COR/T], [Benchmarks][COR/B])

Expand Down
4 changes: 2 additions & 2 deletions Sources/ANKFullWidthKit/ANKFullWidth+Shifts.swift
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ extension ANKFullWidth {
let sign = UInt(repeating: self.isLessThanZero)
//=--------------------------------------=
var destination = self.startIndex
var word = self[words]
let edge = self.endIndex &- words
let edge = self.distance(from: words, to: self.endIndex)
var word = self[words] as UInt

while destination < self.endIndex {
let after = self.index(after: destination)
Expand Down

0 comments on commit dd60042

Please sign in to comment.