type, typep
type(s_object) =>s_typetypep(s_object) =>s_type
Description
Returns a symbol that indicates the type of a SKILL object. The functions type and typep are identical. The suffix p is usually added to the name of a function to indicate that it is a predicate function.
Arguments
Value Returned
Examples
type( 'foo )
=> symbol
typep( "foo" )
=> string
type( 12 )
=> fixnum
typep ("12" )
=> string
Related Topics
Return to top