From 07158430424a11cb0012fe315b790bd28b8a7cf3 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Mon, 2 Aug 1999 11:16:12 +0000 Subject: [PATCH] Document quad printing. p4raw-id: //depot/cfgperl@3881 --- pod/perlfunc.pod | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 13ada36..2534665 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -4114,6 +4114,43 @@ If C is in effect, the character used for the decimal point in formatted real numbers is affected by the LC_NUMERIC locale. See L. +If Perl understands "quads" (64-bit integers) (this requires +either that the platform natively supports quads or that Perl +has been specifically compiled to support quads), the flags + + d u o x X b i D U O + +print quads, and they may optionally be preceded by + + ll L q + +For example + + %lld %16LX %qo + +You can find out whether your Perl supports long doubles via L: + + use Config; + $Config{use64bits} and print "quads\n"; + +If Perl understands "long doubles" (this requires that the platform +supports long doubles), the flags + + e f g E F G + +may optionally be preceded by + + ll L + +For example + + %llf %Lg + +You can find out whether your Perl supports long doubles via L: + + use Config; + $Config{d_longdbl} and print "long doubles\n"; + =item sqrt EXPR =item sqrt -- 2.7.4