Carrot
view release on metacpan or search on metacpan
lib/Carrot/Diversity/English/Builtins.pm view on Meta::CPAN
# 'array_push' => 'push', # refused
# 'array_shift' => 'shift', # refused
# 'array_unshift' => 'unshift', # refused
# 'array_splice' => 'splice', # refused
# 're_match' => 'm', # operator
# 're_substitution' => 's', # operator
'file_chdir' => 'chdir',
'file_chmod' => 'chmod',
'file_chown' => 'chown',
'file_chroot' => 'chroot',
'file_fcntl' => 'fcntl',
'file_glob' => 'glob',
'file_ioctl' => 'ioctl',
'file_link' => 'link',
'file_lstat' => 'lstat',
'file_mkdir' => 'mkdir',
'file_open' => 'open',
'file_opendir' => 'opendir',
'file_readlink' => 'readlink',
lib/Carrot/Personality/Elemental/Scalar/Textual/File_Name.pm view on Meta::CPAN
}
sub change_mode
# /type method
# /effect ""
# //parameters
# value
# //returns
# ?
{
return(chown($_[SPX_VALUE], ${$_[THIS]}));
}
sub change_owner
# /type method
# /effect ""
# //parameters
# uid
# gid
# //returns
# ?
{
my ($this, $uid, $gid) = @ARGUMENTS;
return(chown($uid, $gid, $$this));
}
sub change_root_directory
# /type method
# /effect ""
# //parameters
# value
# //returns
# ?
{
lib/Carrot/Personality/Elemental/Scalar/Textual/File_Name.pm view on Meta::CPAN
sub change_timestamps
# /type method
# /effect ""
# //parameters
# atime
# mtime
# //returns
# ?
{
my ($this, $atime, $mtime) = @ARGUMENTS;
return(chown($atime, $mtime, $$this));
}
sub change_working_directory
# /type method
# /effect ""
# //parameters
# //returns
# ?
{
return(chdir(${$_[THIS]}));
( run in 0.523 second using v1.01-cache-2.11-cpan-71847e10f99 )