(iterable? val)
  val: any type
  returns a bool
F

Returns #t if its argument can be iterated.

In other words, a type is iterable if it can be passed to the iter function without producing an error.

Currently, this is only true for the primitive types arr, str, tab, coro and iter.

expander?