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