Changeset 22005 for docs/Perl6/Spec
- Timestamp:
- 08/22/08 11:08:07 (3 months ago)
- Files:
-
- 1 modified
-
docs/Perl6/Spec/Functions.pod (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
docs/Perl6/Spec/Functions.pod
r21375 r22005 13 13 Mark Stosberg <mark@summersault.com> 14 14 Date: 12 Mar 2005 15 Last Modified: 18 Jul200816 Version: 2 315 Last Modified: 22 Aug 2008 16 Version: 24 17 17 18 18 This document attempts to document the list of builtin functions in Perl 6. … … 560 560 =item delete 561 561 562 our List m ulti method delete (@array : *@indices ) is export562 our List method delete (@array : *@indices ) is export 563 563 564 564 Sets elements specified by C<@indices> in the invocant to a … … 577 577 =item exists 578 578 579 our Bool m ulti method exists (@array : Int *@indices ) is export579 our Bool method exists (@array : Int *@indices ) 580 580 581 581 True if the specified Array element has been assigned to. This … … 585 585 an error. 586 586 587 A nunary form is expected. See C<Hash::delete>.587 A unary form is expected. See C<Hash::delete>. 588 588 589 589
