coverage. ( object -- )
Coverage tool
Prev:coverage ( object -- seq )
Next:%coverage ( string -- x )


Vocabulary
tools.coverage

Inputs and outputs
objectan object


Word description
Calls the coverage word on all the words in a vocabalary or on a single word and prints out a report.

Definition
IN: tools.coverage

GENERIC: coverage. ( object -- )


Methods
USING: sequences tools.coverage ;

M: sequence coverage. [ first2 pair-coverage. ] each ;


USING: strings tools.coverage ;

M: string coverage. [ coverage. ] each-word ;


USING: kernel tools.coverage words ;

M: word coverage. dup coverage pair-coverage. ;