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
The idea is to add support for globs and quickly iterating a directory. I think it would look very similar to how ruby solves that. Check the documentation for http://ruby-doc.org/core-1.9.3/Dir.html
We can think about translating the following ruby examples to swift
Dir["/**"] expand the glob and return all the matching files
Dir.chdir change the current directory
Dir.foreach(directory) enumerates the files in the directory
and so on...
The text was updated successfully, but these errors were encountered:
The idea is to add support for globs and quickly iterating a directory. I think it would look very similar to how ruby solves that. Check the documentation for http://ruby-doc.org/core-1.9.3/Dir.html
We can think about translating the following ruby examples to swift
Dir["/**"]
expand the glob and return all the matching filesDir.chdir
change the current directoryDir.foreach(directory)
enumerates the files in the directoryThe text was updated successfully, but these errors were encountered: