noise ( obj -- pair )


Vocabulary
reports.noise

Definition
IN: reports.noise

GENERIC: noise ( obj -- pair )


Methods
USING: arrays reports.noise sequences ;

M: array noise [ noise ] map vsum ;


USING: accessors locals.types reports.noise ;

M: lambda noise body>> noise ;


USING: accessors locals.types reports.noise ;

M: let noise body>> noise ;


USING: kernel reports.noise ;

M: object noise drop { 0 0 } ;


USING: math.vectors quotations reports.noise sequences ;

M: quotation noise [ noise ] map vsum { 1/4 1/2 } v+ ;


USING: arrays reports.noise words ;

M: word noise badness 1 2array ;


USING: accessors kernel reports.noise ;

M: wrapper noise wrapped>> noise ;