.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "if 3perl" .TH if 3perl "2021-09-24" "perl v5.32.1" "Perl Programmers Reference Guide" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" if \- "use" a Perl module if a condition holds .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 2 \& use if CONDITION, "MODULE", ARGUMENTS; \& no if CONDITION, "MODULE", ARGUMENTS; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" .ie n .SS """use if""" .el .SS "\f(CWuse if\fP" .IX Subsection "use if" The \f(CW\*(C`if\*(C'\fR module is used to conditionally load another module. The construct: .PP .Vb 1 \& use if CONDITION, "MODULE", ARGUMENTS; .Ve .PP \&... will load \f(CW\*(C`MODULE\*(C'\fR only if \f(CW\*(C`CONDITION\*(C'\fR evaluates to true; it has no effect if \f(CW\*(C`CONDITION\*(C'\fR evaluates to false. (The module name, assuming it contains at least one \f(CW\*(C`::\*(C'\fR, must be quoted when \f(CW\*(Aquse strict "subs";\*(Aq\fR is in effect.) If the \s-1CONDITION\s0 does evaluate to true, then the above line has the same effect as: .PP .Vb 1 \& use MODULE ARGUMENTS; .Ve .PP For example, the \fIUnicode::UCD\fR module's \fIcharinfo\fR function will use two functions from \fIUnicode::Normalize\fR only if a certain condition is met: .PP .Vb 2 \& use if defined &DynaLoader::boot_DynaLoader, \& "Unicode::Normalize" => qw(getCombinClass NFD); .Ve .PP Suppose you wanted \f(CW\*(C`ARGUMENTS\*(C'\fR to be an empty list, \fIi.e.\fR, to have the effect of: .PP .Vb 1 \& use MODULE (); .Ve .PP You can't do this with the \f(CW\*(C`if\*(C'\fR pragma; however, you can achieve exactly this effect, at compile time, with: .PP .Vb 1 \& BEGIN { require MODULE if CONDITION } .Ve .ie n .SS """no if""" .el .SS "\f(CWno if\fP" .IX Subsection "no if" The \f(CW\*(C`no if\*(C'\fR construct is mainly used to deactivate categories of warnings when those categories would produce superfluous output under specified versions of \fIperl\fR. .PP For example, the \f(CW\*(C`redundant\*(C'\fR category of warnings was introduced in Perl\-5.22. This warning flags certain instances of superfluous arguments to \&\f(CW\*(C`printf\*(C'\fR and \f(CW\*(C`sprintf\*(C'\fR. But if your code was running warnings-free on earlier versions of \fIperl\fR and you don't care about \f(CW\*(C`redundant\*(C'\fR warnings in more recent versions, you can call: .PP .Vb 2 \& use warnings; \& no if $] >= 5.022, q|warnings|, qw(redundant); \& \& my $test = { fmt => "%s", args => [ qw( x y ) ] }; \& my $result = sprintf $test\->{fmt}, @{$test\->{args}}; .Ve .PP The \f(CW\*(C`no if\*(C'\fR construct assumes that a module or pragma has correctly implemented an \f(CW\*(C`unimport()\*(C'\fR method \*(-- but most modules and pragmata have not. That explains why the \f(CW\*(C`no if\*(C'\fR construct is of limited applicability. .SH "BUGS" .IX Header "BUGS" The current implementation does not allow specification of the required version of the module. .SH "SEE ALSO" .IX Header "SEE ALSO" Module::Requires can be used to conditionally load one or modules, with constraints based on the version of the module. Unlike \f(CW\*(C`if\*(C'\fR though, Module::Requires is not a core module. .PP Module::Load::Conditional provides a number of functions you can use to query what modules are available, and then load one or more of them at runtime. .PP The provide module from \s-1CPAN\s0 can be used to select one of several possible modules to load based on the version of Perl that is running. .SH "AUTHOR" .IX Header "AUTHOR" Ilya Zakharevich . .SH "COPYRIGHT AND LICENCE" .IX Header "COPYRIGHT AND LICENCE" This software is copyright (c) 2002 by Ilya Zakharevich. .PP This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.