Math::Trig - trigonometric functions

NAME SYNOPSIS DESCRIPTION TRIGONOMETRIC FUNCTIONSERRORS DUE TO DIVISION BY ZERO SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS PLANE ANGLE CONVERSIONS RADIAL COORDINATE CONVERSIONSCOORDINATE SYSTEMS 3-D ANGLE CONVERSIONS GREAT CIRCLE DISTANCES AND DIRECTIONSgreat_circle_distance great_circle_direction great_circle_bearing great_circle_destination great_circle_midpoint great_circle_waypoint EXAMPLESCAVEAT FOR GREAT CIRCLE FORMULAS Real-valued asin and acos BUGS AUTHORS LICENSE NAME Math::Tri

TAP::Parser::IteratorFactory - Figures out which SourceHandler objects to use for a given Source

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods SUBCLASSINGExample AUTHORS ATTRIBUTION SEE ALSO NAME TAP::Parser::IteratorFactory - Figures out which SourceHandler objects to use for a given Source VERSION Version 3.35 SYNOPSIS use TAP::Parser::IteratorFactory; my $factory = TAP::Parser::IteratorFactory->new({ %config }); my $iterator = $factory->make_iterator( $filename ); DESCRIPTION This is a factory class that takes a TAP::Parser::Source and runs it thro

Parse::CPAN::Meta - Parse META.yml and META.json CPAN metadata files

NAME VERSION SYNOPSIS DESCRIPTION METHODSload_file load_yaml_string load_json_string load_string yaml_backend json_backend FUNCTIONSLoad LoadFile ENVIRONMENTPERL_JSON_BACKEND PERL_YAML_BACKEND SUPPORTBugs / Feature Requests Source Code AUTHORS CONTRIBUTORS COPYRIGHT AND LICENSE NAME Parse::CPAN::Meta - Parse META.yml and META.json CPAN metadata files VERSION version 1.4414 SYNOPSIS ############################################# # In your file --- name: My-Distribution version: 1.23 re

perldsc - Perl Data Structures Cookbook

NAME DESCRIPTION REFERENCES COMMON MISTAKES CAVEAT ON PRECEDENCE WHY YOU SHOULD ALWAYS use strict DEBUGGING CODE EXAMPLES ARRAYS OF ARRAYS Declaration of an ARRAY OF ARRAYS Generation of an ARRAY OF ARRAYS Access and Printing of an ARRAY OF ARRAYS HASHES OF ARRAYS Declaration of a HASH OF ARRAYS Generation of a HASH OF ARRAYS Access and Printing of a HASH OF ARRAYS ARRAYS OF HASHES Declaration of an ARRAY OF HASHES Generation of an ARRAY OF HASHES Access and Printing of an ARRAY OF HAS

Data::Dumper - stringified perl data structures, suitable for both printing and eval

NAME SYNOPSIS DESCRIPTIONMethods Functions Configuration Variables or Methods Exports EXAMPLES BUGSNOTE AUTHOR VERSION SEE ALSO NAME Data::Dumper - stringified perl data structures, suitable for both printing and eval SYNOPSIS use Data::Dumper; # simple procedural interface print Dumper($foo, $bar); # extended usage with names print Data::Dumper->Dump([$foo, $bar], [qw(foo *ary)]); # configuration variables { local $Data::Dumper::Purity = 1; eval Data::Dumper->Dump([$foo, $bar

Opcode - Disable named opcodes when compiling perl code

NAME SYNOPSIS DESCRIPTION NOTE WARNING Operator Names and Operator Lists Opcode Functions Manipulating Opsets TO DO (maybe) Predefined Opcode Tags SEE ALSO AUTHORS NAME Opcode - Disable named opcodes when compiling perl code SYNOPSIS use Opcode; DESCRIPTION Perl code is always compiled into an internal format before execution. Evaluating perl code (e.g. via "eval" or "do 'file'") causes the code to be compiled into an internal format and then, provided there was no error in the compilation,

$^D

$^D The current value of the debugging flags. May be read or set. Like its command-line equivalent, you can use numeric or symbolic values, eg $^D = 10 or $^D = "st" . Mnemonic: value of -D switch.

$%

$% The current page number of the currently selected output channel. Mnemonic: % is page number in nroff.

perlmodlib - constructing new Perl modules and finding existing ones

NAME THE PERL MODULE LIBRARYPragmatic Modules Standard Modules Extension Modules CPANAfrica Asia Central America Europe North America Oceania South America RSYNC Mirrors Modules: Creation, Use, and AbuseGuidelines for Module Creation Guidelines for Converting Perl 4 Library Scripts into Modules Guidelines for Reusing Application Code NOTE NAME perlmodlib - constructing new Perl modules and finding existing ones THE PERL MODULE LIBRARY Many modules are included in the Perl distribution.

perlthrtut - Tutorial on threads in Perl

NAME DESCRIPTION What Is A Thread Anyway? Threaded Program ModelsBoss/Worker Work Crew Pipeline What kind of threads are Perl threads? Thread-Safe Modules Thread BasicsBasic Thread Support A Note about the Examples Creating Threads Waiting For A Thread To Exit Ignoring A Thread Process and Thread Termination Threads And DataShared And Unshared Data Thread Pitfalls: Races Synchronization and controlControlling access: lock() A Thread Pitfall: Deadlocks Queues: Passing Data Around Semaphor