routine classify
Documentation for routine classify
assembled from the following types:
class Any
From Any
(Any) method classify
Defined as:
multi method classify()multi method classify(Whatever)multi method classify(, :!, :)multi method classify(, :)multi sub classify(, +items, :!, * )multi sub classify(, +items, * )
The two first forms will fail. The rest include a $test
, which is a function that will return a scalar for every input; these will be used as keys of a hash whose values will be arrays with the elements that output that key for the test function.
my = (2003..2008).map( );.classify( *.is-leap-year , into => my );say ;# OUTPUT: «{False => [2003-01-01 2005-01-01 2006-01-01 2007-01-01],# True => [2004-01-01 2008-01-01]}»
Similarly to .categorize
, elements can be normalized by the Callable
passed with the :as
argument, and it can use the :into
named argument to pass a Hash
the results will be classified into; in the example above, it's defined on the fly.
From version 6.d, .classify
will also work with Junctions
.
class List
From List
(List) routine classify
Defined as:
multi method classify(, :!, :)multi method classify(, :)multi sub classify(, +items, :!, * )multi sub classify(, +items, * )
Transforms a list of values into a hash representing the classification of those values; each hash key represents the classification for one or more of the incoming list values, and the corresponding hash value contains an array of those list values classified into the category of the associated key. $test
will be an expression that will produce the hash keys according to which the elements are going to be classified.
Example:
say classify , (1, 7, 6, 3, 2);# OUTPUT: «{even => [6 2], odd => [1 7 3]}»say ('hello', 1, 22/7, 42, 'world').classify: ;# OUTPUT: «{1 => [1], 2 => [42], 5 => [hello world], 8 => [3.142857]}»
It can also take :as
as a named parameter, transforming the value before classifying it:
say <Innie Minnie Moe>.classify( , :as);# OUTPUT: «{3 => [moe], 5 => [innie], 6 => [minnie]}»
This code is classifying by number of characters, which is the expression that has been passed as $test
parameter, but the :as
block lowercases it before doing the transformation. The named parameter :into
can also be used to classify into a newly defined variable:
<Innie Minnie Moe>.classify( , :as, :into( my ) );say ; # OUTPUT: «{3 => [moe], 5 => [innie], 6 => [minnie]}»
We are declaring the scope of %words{Int}
on the fly, with keys that are actually integers; it gets created with the result of the classification.