is_pair(obj)
Return true if obj is a pair, otherwise return false.
true
obj
false
is_pair([]) // false is_pair([1]) // true is_pair(1:2) // true is_pair([1, 2, 'a]) // true
Core Module Index | Contents