Revision 27100

Date:
2009/06/16 20:56:05
Author:
moritz
Revision Log:
[S32/Containers] spec Buf.decode
Files:

Legend:

 
Added
 
Removed
 
Modified
  • docs/Perl6/Spec/S32-setting-library/Containers.pod

     
    753 753 Buf.new(127, :size(16)) # returns a buf16
    754 754 Buf.new(1024, :size(8)) # dies, because 1024 >= 2**8
    755 755
    756 =head3 Methods
    757
    758 =item decode
    759
    760 our Str method decode($encoding = $?ENC, $nf = $?NF)
    761
    762 Decode the C<Buf> into a C<Str>
    763
    756 764 =head2 Pair
    757 765
    758 766 class Pair does Associative {...}