Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3531 - 3540 of 6,204 for content_length:[0 TO 9999] (0.08 sec)

  1. DBM_Filter::int32.txt

    package DBM_Filter::int32 ; use strict; use warnings; our $VERSION = '0.03'; # todo get Filter to figure endian. sub Store { $_ = 0 if ! defined $_ || $_ eq "" ; $_ = pack("i", $_); } sub Fetch { n...
    perldoc.perl.org/DBM_Filter::int32.txt
    Registered: Fri Nov 08 00:58:46 UTC 2024
    - 754 bytes
    - Viewed (0)
  2. each.txt

    =over =item each HASH X<each> X<hash, iterator> =item each ARRAY X<array, iterator> When called on a hash in list context, returns a 2-element list consisting of the key and value for the next elem...
    perldoc.perl.org/functions/each.txt
    Registered: Mon Nov 04 13:09:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. lc.txt

    =over =item lc EXPR X<lc> X<lowercase> =item lc Returns a lowercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = lc("Perl is GREAT"); # "perl is great" What gets return...
    perldoc.perl.org/functions/lc.txt
    Registered: Mon Nov 04 18:37:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. warn.txt

    =over =item warn LIST X<warn> X<warning> X<STDERR> Emits a warning, usually by printing it to C<STDERR>. C<warn> interprets its operand LIST in the same way as C<die>, but is slightly different in ...
    perldoc.perl.org/functions/warn.txt
    Registered: Mon Nov 04 13:57:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. continue.txt

    =over =item continue BLOCK X<continue> =item continue When followed by a BLOCK, L<C<continue>|/continue BLOCK> is actually a flow control statement rather than a function. If there is a L<C<continu...
    perldoc.perl.org/functions/continue.txt
    Registered: Mon Nov 04 19:57:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. chomp.txt

    =over =item chomp VARIABLE X<chomp> X<INPUT_RECORD_SEPARATOR> X<$/> X<newline> X<eol> =item chomp( LIST ) =item chomp This safer version of L<C<chop>|/chop VARIABLE> removes any trailing string tha...
    perldoc.perl.org/functions/chomp.txt
    Registered: Mon Nov 04 22:27:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. write.txt

    =over =item write FILEHANDLE X<write> =item write EXPR =item write Writes a formatted record (possibly multi-line) to the specified FILEHANDLE, using the format associated with that file. By defaul...
    perldoc.perl.org/functions/write.txt
    Registered: Mon Nov 04 23:48:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. printf.txt

    =over =item printf FILEHANDLE FORMAT, LIST X<printf> =item printf FILEHANDLE =item printf FORMAT, LIST =item printf Equivalent to C<print FILEHANDLE sprintf(FORMAT, LIST)>, except that L<C<$\>|perl...
    perldoc.perl.org/functions/printf.txt
    Registered: Mon Nov 04 22:59:33 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. fileno.txt

    =over =item fileno FILEHANDLE X<fileno> =item fileno DIRHANDLE Returns the file descriptor for a filehandle or directory handle, or undefined if the filehandle is not open. If there is no real file...
    perldoc.perl.org/functions/fileno.txt
    Registered: Mon Nov 04 22:47:47 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. sin.txt

    =over =item sin EXPR X<sin> X<sine> X<asin> X<arcsine> =item sin Returns the sine of EXPR (expressed in radians). If EXPR is omitted, returns sine of L<C<$_>|perlvar/$_>. For the inverse sine opera...
    perldoc.perl.org/functions/sin.txt
    Registered: Mon Nov 04 19:50:24 UTC 2024
    - 338 bytes
    - Viewed (0)
Back to top