Author: moritz
Date: 2009-06-16 22:56:05 +0200 (Tue, 16 Jun 2009)
New Revision: 27100
Modified:
docs/Perl6/Spec/S32-setting-library/Containers.pod
Log:
[S32/Containers] spec Buf.decode
Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Containers.pod 2009-06-16 20:51:36 UTC
(rev 27099)
+++ docs/Perl6/Spec/S32-setting-library/Containers.pod 2009-06-16 20:56:05 UTC
(rev 27100)
@@ -753,6 +753,14 @@
Buf.new(127, :size(16)) # returns a buf16
Buf.new(1024, :size(8)) # dies, because 1024 >= 2**8
+=head3 Methods
+
+=item decode
+
+ our Str method decode($encoding = $?ENC, $nf = $?NF)
+
+Decode the C<Buf> into a C<Str>
+
=head2 Pair
class Pair does Associative {...}