type?

checks if given value is of type :type


Parameters

type? value :any

Returns

  • :logical

Examples

copy
print type? :string ; true print type? "string" ; false print type? 123 ; false

Related