Re: r26700 - docs/Perl6/Spec

2009-05-07 Thread Jonathan Worthington
Moritz Lenz wrote: Jon Lang wrote: @@ -1836,6 +1836,12 @@ prototype objects, in which case stringification is not likely to produce something of interest to non-gurus.) +The C.^parents method by default returns a flattened list of all +parents sorted in MRO (dispatch) order. Other options

r26700 - docs/Perl6/Spec

2009-05-06 Thread pugs-commits
Author: jnthn Date: 2009-05-06 15:36:27 +0200 (Wed, 06 May 2009) New Revision: 26700 Modified: docs/Perl6/Spec/S12-objects.pod Log: [spec] Rename ^isa() to get list of parents to ^parents so there's no confusion with .^isa(Foo) and consistency with .^does(Foo) and .^roles(). Also fill out

Re: r26700 - docs/Perl6/Spec

2009-05-06 Thread Jon Lang
@@ -1836,6 +1836,12 @@  prototype objects, in which case stringification is not likely to  produce something of interest to non-gurus.) +The C.^parents method by default returns a flattened list of all +parents sorted in MRO (dispatch) order. Other options are: + +    :local              

Re: r26700 - docs/Perl6/Spec

2009-05-06 Thread Moritz Lenz
Jon Lang wrote: @@ -1836,6 +1836,12 @@ prototype objects, in which case stringification is not likely to produce something of interest to non-gurus.) +The C.^parents method by default returns a flattened list of all +parents sorted in MRO (dispatch) order. Other options are: + +