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