Re: list of all raku classes?

2021-02-28 Thread Joseph Brenner
Daniel Sockwell wrote: >> Is there a convenient way to get a list of all classes built-in to Raku? > Short answer: > raku -e '.say for (|CORE::, |UNIT::, |OUTERS::, |MY::).grep({ .key eq > .value.^name }).grep({ .value.HOW.^name eq "Perl6::Metamodel::ClassHOW" > }).map(*.key).unique' > Somewhat

Re: list of all raku classes?

2021-02-28 Thread Daniel Sockwell
> Is there a convenient way to get a list of all classes built-in to Raku? Short answer: raku -e '.say for (|CORE::, |UNIT::, |OUTERS::, |MY::).grep({ .key eq .value.^name }).grep({ .value.HOW.^name eq "Perl6::Metamodel::ClassHOW" }).map(*.key).unique' Somewhat longer answer: https://stackoverf

list of all raku classes?

2021-02-28 Thread Joseph Brenner
Is there a convenient way to get a list of all classes built-in to Raku?