Author: masak
Date: 2009-01-24 22:17:56 +0100 (Sat, 24 Jan 2009)
New Revision: 25017
Modified:
docs/Perl6/Spec/S29-functions.pod
Log:
[S29] documented .i method in Num
Modified: docs/Perl6/Spec/S29-functions.pod
===================================================================
--- docs/Perl6/Spec/S29-functions.pod 2009-01-24 18:16:21 UTC (rev 25016)
+++ docs/Perl6/Spec/S29-functions.pod 2009-01-24 21:17:56 UTC (rev 25017)
@@ -14,8 +14,8 @@
Carl Mäsak <[email protected]>
Moritz Lenz <[email protected]>
Date: 12 Mar 2005
- Last Modified: 7 Jan 2009
- Version: 37
+ Last Modified: 24 Jan 2009
+ Version: 38
The document is a draft.
@@ -344,7 +344,6 @@
Logarithm of base C<$base>, default Natural. Calling with C<$x == 0> is an
error.
-
=item log10
our Num multi method log10 (Num $x:) is export
@@ -404,6 +403,13 @@
Returns a complex number specified in polar coordinates. Angle is in radians.
+=item i
+
+ our Num multi method i ( Num $x: )
+
+Returns a complex number representing the parameter multiplied by the imaginary
+unit C<i>.
+
=back