- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 2001 - 2010 of 5,690 for content_length:[0 TO 9999] (0.1 sec)
-
listen.txt
=over =item listen SOCKET,QUEUESIZE X<listen> Does the same thing that the L<listen(2)> system call does. Returns true if it succeeded, false otherwise. See the example in L<perlipc/"Sockets: Clien...perldoc.perl.org/functions/listen.txtRegistered: Tue Nov 05 04:28:39 UTC 2024 - 233 bytes - Viewed (0) -
no.txt
=over =item no MODULE VERSION LIST X<no declarations> X<unimporting> =item no MODULE VERSION =item no MODULE LIST =item no MODULE =item no VERSION See the L<C<use>|/use Module VERSION LIST> functio...perldoc.perl.org/functions/no.txtRegistered: Tue Nov 05 02:27:21 UTC 2024 - 271 bytes - Viewed (0) -
prototype.txt
=over =item prototype FUNCTION X<prototype> =item prototype Returns the prototype of a function as a string (or L<C<undef>|/undef EXPR> if the function has no prototype). FUNCTION is a reference to...perldoc.perl.org/functions/prototype.txtRegistered: Tue Nov 05 13:40:15 UTC 2024 - 745 bytes - Viewed (0) -
class.txt
=over =item class NAMESPACE =item class NAMESPACE VERSION =item class NAMESPACE BLOCK =item class NAMESPACE VERSION BLOCK Declares the BLOCK or the rest of the compilation unit as being in the give...perldoc.perl.org/functions/class.txtRegistered: Tue Nov 05 09:21:36 UTC 2024 - 374 bytes - Viewed (0) -
untie.txt
=over =item untie VARIABLE X<untie> Breaks the binding between a variable and a package. (See L<tie|/tie VARIABLE,CLASSNAME,LIST>.) Has no effect if the variable is not tied. =back 183perldoc.perl.org/functions/untie.txtRegistered: Tue Nov 05 09:56:15 UTC 2024 - 183 bytes - Viewed (0) -
syswrite.txt
=over =item syswrite FILEHANDLE,SCALAR,LENGTH,OFFSET X<syswrite> =item syswrite FILEHANDLE,SCALAR,LENGTH =item syswrite FILEHANDLE,SCALAR Attempts to write LENGTH bytes of data from variable SCALAR...perldoc.perl.org/functions/syswrite.txtRegistered: Mon Nov 04 17:02:13 UTC 2024 - 1.7K bytes - Viewed (0) -
splice.txt
=over =item splice ARRAY,OFFSET,LENGTH,LIST X<splice> =item splice ARRAY,OFFSET,LENGTH =item splice ARRAY,OFFSET =item splice ARRAY Removes the elements designated by OFFSET and LENGTH from an arra...perldoc.perl.org/functions/splice.txtRegistered: Tue Nov 05 00:12:52 UTC 2024 - 1.7K bytes - Viewed (0) -
rand.txt
=over =item rand EXPR X<rand> X<random> =item rand Returns a random fractional number greater than or equal to C<0> and less than the value of EXPR. (EXPR should be positive.) If EXPR is omitted, t...perldoc.perl.org/functions/rand.txtRegistered: Mon Nov 04 20:35:50 UTC 2024 - 1.3K bytes - Viewed (0) -
shift.txt
=over =item shift ARRAY X<shift> =item shift Removes and returns the B<first> element of an array. This shortens the array by one and moves everything down. my @arr = ('cat', 'dog'); my $item = shi...perldoc.perl.org/functions/shift.txtRegistered: Mon Nov 04 19:15:52 UTC 2024 - 1.2K bytes - Viewed (0) -
push.txt
=over =item push ARRAY,LIST X<push> X<stack> Adds one or more items to the B<end> of an array. my @animals = ("cat"); push(@animals, "mouse"); # ("cat", "mouse") my @colors = ("red"); push(@colors,...perldoc.perl.org/functions/push.txtRegistered: Mon Nov 04 22:15:27 UTC 2024 - 668 bytes - Viewed (0)