This is a tiny design question.
Currently, the -e flag in $&access is used along with the -1 flag to generate an exception if none of the given files are accessible. This is used to good effect in %pathsearch.
However, without the -1, $&access -e quietly has no effect at all. That seems a bit strange, and not very useful. Should we instead treat it as an invalid option, OR make it significant in that case by throwing an exception if the $&access operation would have a falsey result?
This is a tiny design question.
Currently, the
-eflag in$&accessis used along with the-1flag to generate an exception if none of the given files are accessible. This is used to good effect in%pathsearch.However, without the
-1,$&access -equietly has no effect at all. That seems a bit strange, and not very useful. Should we instead treat it as an invalid option, OR make it significant in that case by throwing an exception if the$&accessoperation would have a falsey result?