string? ( object -- ? )
Factor documentation > Factor handbook > The language > Collections > Strings
Prev:string
Next:>string ( seq -- str )


Vocabulary
strings

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the string class.

Definition
USING: kernel kernel.private ;

IN: strings

: string? ( object -- ? ) tag 11 eq? ;