Perl6-Doc

 view release on metacpan or  search on metacpan

share/table_index.pod  view on Meta::CPAN

=item (array method) - coverts values of a list into string context and joines them like with '~', alias to .join('')

=back

=head2 C<<< category >>>

=over

=item (grammatical category) - namespace of grammatical categories, in case you want to create a new one with a macro

=back

=head2 C<<< char >>>

=over

=item (num method) - convert number into charakter according a character table, reverse of ord

=back

=head2 C<<< chars >>>

=over

=item (string method) - returns number of characters  

=back

=head2 C<<< chdir >>>

=over

=item - changes the current working directory ($*CWD)

=back

=head2 C<<< chmod >>>

=over

=item - changes access rights of files

=back

=head2 C<<< chomp >>>

=over

=item (string method) - returns a string with the last newline (if there is one) removed

=back

=head2 C<<< chop >>>

=over

=item (string method) - returns a string with the last character removed

=back

=head2 C<<< chown >>>

=over

=item - changes owner of files

=back

=head2 C<<< circumfix >>>

=over

=item (grammatical category) - operator namespace of ops, that stay after one statement or variable, but do surround a second (like braces in $a[2])

=back

=head2 C<<< class >>>

=over

=item (block modifier) - declares a collection of methods that define an object

=back

=head2 C<<< classify >>>

=over

=item (array method) - special form of map, to classify input values; the return value of the closure determines, under which key the value appears in the resulting hash

=back

=head2 C<<< close >>>

=over

=item (filehandle method) - releasing the connection to a file via a file handler

=back

=head2 C<<< cmp >>>

=over

=item (comp op) - compares values textually, gives results -1(lower than), 0 (equal), 1 (greater than), using the Order class

=back

=head2 C<<< comb >>>

=over

=item (string method) - $str.comb(/pattern/) equals $str ~~ m:g/pattern/, except it returns the list of findings, not a match object like .match aka m//; default pattern is rx/./

=back

=head2 C<<< constant >>>

=over

=item (var trait) - makes so declared var (is constant) a real constant



( run in 0.510 second using v1.01-cache-2.11-cpan-5511b514fd6 )