Isa?

(isa? value type) -> boolean

Returns true if value is of the given type, otherwise false.

Examples:

>>(isa? 1 <integer>)
:: true.
>>(isa? #t <boolean>)
:: true.
>>(isa? 'a <string>)
:: false.