Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Start IO::Spec docs
- Loading branch information
1 parent
744bf16
commit 55471e9
Showing
1 changed file
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,95 @@ | ||
| =begin pod | ||
| =TITLE class IO::Spec | ||
| =SUBTITLE Platform specific operations on file and directory paths | ||
| class IO::Spec { } | ||
| =head2 method canonpath | ||
| method canonpath( $patharg, :$parent --> Str) | ||
| =head2 method dir-sep | ||
| method dir-sep | ||
| =head2 method curdir | ||
| method curdir | ||
| =head2 method updir | ||
| method updir | ||
| =head2 method curupdir | ||
| method curupdir | ||
| =head2 method rootdir | ||
| method rootdir | ||
| =head2 method devnull | ||
| method devnull | ||
| =head2 method basename | ||
| method basename(\path) | ||
| =head2 method extension | ||
| method extension(\path) | ||
| =head2 method tmpdir | ||
| method tmpdir | ||
| =head2 method is-absolute | ||
| method is-absolute( $file ) | ||
| =head2 method path | ||
| method path | ||
| =head2 method splitpath | ||
| method splitpath( $path, :$nofile = False ) | ||
| =head2 method split | ||
| method split (Cool:D $path is copy ) | ||
| =head2 method join | ||
| method join ($, $dirname, $file) | ||
| =head2 method catpath | ||
| method catpath( $, $dirname, $file ) | ||
| =head2 method catdir | ||
| method catdir( *@parts ) | ||
| =head2 method splitdir | ||
| method splitdir( $path ) | ||
| =head2 method catfile | ||
| method catfile( |c ) | ||
| =head2 method abs2rel | ||
| method abs2rel( $path is copy, $base is copy = Str ) | ||
| =head2 method rel2abs | ||
| method rel2abs( $path, $base? is copy) | ||
| =end pod | ||
|
|
||
| # vim: expandtab shiftwidth=4 ft=perl6 |