method english-list

Documentation for method english-list assembled from the following types:

class Perl6::Documentable

From Perl6::Documentable

(Perl6::Documentable) method english-list

Defined as:

method english-list()

This is a helper method used to convert lists (@.subkinds) to an "english" format.

my $doc = Perl6::Documentable.new(
    kind     => Kind::Type,
    subkinds => ["a""b"],
    pod      => []
);
 
say $doc.english-list # OUTPUT: a and b␤»