Changeset 22005 for docs/Perl6/Spec

Show
Ignore:
Timestamp:
08/22/08 11:08:07 (3 months ago)
Author:
lwall
Message:

[STD] remove p5ish usages of exists/delete
[gimme5] translate .:exists and .:delete forms to p5
[S29] remove "is export" from exists/delete methods

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/Perl6/Spec/Functions.pod

    r21375 r22005  
    1313                Mark Stosberg <mark@summersault.com> 
    1414 Date:          12 Mar 2005 
    15  Last Modified: 18 Jul 2008 
    16  Version:       23 
     15 Last Modified: 22 Aug 2008 
     16 Version:       24 
    1717 
    1818This document attempts to document the list of builtin functions in Perl 6. 
     
    560560=item delete 
    561561 
    562  our List multi method delete (@array : *@indices ) is export 
     562 our List method delete (@array : *@indices ) is export 
    563563 
    564564Sets elements specified by C<@indices> in the invocant to a 
     
    577577=item exists 
    578578 
    579  our Bool multi method exists (@array : Int *@indices ) is export 
     579 our Bool method exists (@array : Int *@indices ) 
    580580 
    581581True if the specified Array element has been assigned to. This 
     
    585585an error. 
    586586 
    587 An unary form is expected. See C<Hash::delete>. 
     587A unary form is expected. See C<Hash::delete>. 
    588588 
    589589