You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would expect it to grab chars 4 through 8 in the below case.
currently: "abcdefgh"[4..<8] -> "" // blank string
expected example: "abcdefgh"[4..<8] -> "efgh"
does SwiftString's subscript work this way intentionally?
The text was updated successfully, but these errors were encountered: