Padre
view release on metacpan or search on metacpan
share/languages/perl5/perl5.yml view on Meta::CPAN
---
# Copyright 2008-2014 The Padre development team as listed in Padre.pm.
# LICENSE
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl 5 itself.
abs:
cmd: (NUMBER)
exp: The absolute value of NUMBER.
accept:
cmd: (NEWSOCKET, GENERICSOCKET)
exp: Accept an incoming socket.
alarm:
cmd: (NUMBER)
exp: Asks the operating system to send an alarm sign after NUMBER seconds.
atan2:
cmd: (Y, X)
exp: Returns the arctangent of Y/X in the range -PI to PI.
bind:
cmd: (SOCKET, NAME)
exp: Binds a network address to a socket.
binmode:
cmd: (FILEHANDLE) or (FILEHANDLE, LAYER)
exp: Arranges for FILEHANDLE to be read or written in "binary" format.
bless:
cmd: (REFERENCE, CLASSNAME)
exp: Connects a REFERENCE (usually of a hash) to a CLASS to arrange for OOP dispatching.
caller:
cmd: (NUMBER)
exp: Returns information regarding the caller of the current function NUMBER frames earlier in the call stack.
chdir:
cmd: (PATH)
exp: Change the current working directory to PATH.
chmod:
cmd: (LIST)
exp: Changes the permissions of a LIST of files.
chomp:
cmd: (STRING) or (ARRAY)
exp: Remove the newline from the end of the STRING or from the end of every string in the ARRAY.
chop:
cmd: (STRING)
exp: Remove last character from STRING. (Usually better to use chomp than chop.)
chown:
cmd: (LIST)
exp: Changes the owner (and group) of a LIST of files.
chr:
cmd: (NUMBER)
exp: Returns the character represented by that NUMBER in the character set.
chroot:
cmd: (FILENAME)
exp: (Superuser only.)
close:
cmd: (FILEHANDLE)
exp: Flushes all the data and closes a FILEHANDLE opened by open().
closedir:
cmd: (DIRECTORY_HANDLE)
exp: Close a DIRECTORY_HANDLE opened by opendir().
connect:
cmd: (SOCKET, NAME)
exp: Attempts to connect to a remote socket.
continue:
cmd: BLOCK
exp: Flow control statement.
cos:
cmd: (NUMBER)
exp: Returns the cosine of NUMBER.
crypt:
cmd: (PLAINTEXT, SALT)
exp: Returns the encrypted PLAINTEXT string using the SALT.
dbmclose:
cmd: (HASH)
exp: See untie() instead.
dbmopen:
cmd: (HASH, DBNAME, MASK)
exp: See tie() instead.
defined:
cmd: SCALAR
exp: Returns false if SCALAR is undef. Otherwise returns true.
delete:
cmd: (HASH_ELEMENT)
exp: Remove the HASH_ELEMENT from the HASH and return the value it had.
die:
cmd: (STRING)
exp: Throw an exception that can be caught by an eval block.
do:
cmd: BLOCK or (PATH)
exp: do PATH executes the file in the PATH.
dump:
cmd: ()
exp: Immediate core dump (crashing perl) not really useful for humans.
each:
cmd: (HASH)
exp: Loop through a hash by returning the (key, value) pair on every call.
eof:
cmd: (FILEHANDLE)
exp: Returns 1 if the next read on FILEHANDLE will return end of file, or if FILEHANDLE is not open.
eval:
cmd: BLOCK or (STRING)
exp: Compile and execute the given STRING as if was a Perl script. Catching exceptions generated by perl or by calling die().
exec:
cmd: (PROGRAM)
exp: Execute the given external PROGRAM and quit once that is done.
exists:
( run in 0.464 second using v1.01-cache-2.11-cpan-5511b514fd6 )