Handbook
Glossary
negative-power-matrix? ( object -- ? )
Vocabulary
math
.
matrices
.
extras
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
negative-power-matrix
class.
Definition
USING:
classes.tuple.private
kernel
slots.private
;
IN:
math.matrices.extras
:
negative-power-matrix?
( object -- ? )
dup
tuple?
[
layout-of
7
slot
\
negative-power-matrix
eq?
]
[
drop
f
]
if
;