We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When adding a String to a Path, if the Path ends with / and the String starts with / then the results include AnySequence garbage.
String
Path
/
AnySequence
import FileKit print(Path("/Foo/bar/") + "/wat") // prints: // /Foo/bar/AnySequence<Path>(_box: Swift._SequenceBox<Swift._DropFirstSequence<FileKit.DirectoryEnumerator>>)
Tested with the latest develop (7521741) on Swift 4.1.2.
develop
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When adding a
String
to aPath
, if thePath
ends with/
and theString
starts with/
then the results includeAnySequence
garbage.Tested with the latest
develop
(7521741) on Swift 4.1.2.The text was updated successfully, but these errors were encountered: