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
…es to planck.io (#864)
* 🆕 Adds exists?, regular-file? and symbolic-link? predicates to planck.io namespace (issue #863)
* 📚 Adds docs for new fns in planck.io ns
* 📚 Add PR #864 changes to CHANGELOG
* 🚑 Remove type hints, as requested in review of PR #864
* ☔ Add tests for fns added in PR #864
* 🚑 Comment out tests that are unreliable across platforms
* 🚑 Make changelog entry format consistent
* ☔ Fix tests for regular files and directories
* 🆕 Adds hidden-file? fn to planck.io
* 🆕 Make path-elements and file-name public, based on PR feedback
* 🚑 Re-apply updated docstring to markdown docs
* 🚑 Remove warning regarding exists? in planck.io
* 🚑 Restore spurious whitespace
* 🚑 Restore spurious whitespace
* 🚑 Bring published doc inline with docstring
* 🚑 Improves implementation consistency
* 🚑 Update predicates based on review feedback
Following on from the discussion in #858 this is requesting the addition of the following predicates to the
planck.io
namespace:exists?
- does the given file or directory exist on disk (similar tojava.nio.file.Files.exists()
)regular-file?
- is the given file or directory "regular" (similar tojava.nio.file.Files.isRegularFile()
)hidden-file?
- is the given file or directory "hidden" (similar tojava.nio.file.Files.isHidden()
)symbolic-link?
- is the given file a symbolic link (similar tojava.nio.file.Files.isSymbolicLink()
)The text was updated successfully, but these errors were encountered: