1 2 3 4 5 6 7 8 9 10 11 12 13
--- name: "vector?" module: "vectors" section: "Predicates & Introspection" --- Test whether a value is a vector. ```sema (vector? [1 2 3]) ; => #t (vector? '(1 2 3)) ; => #f (vector? 42) ; => #f ```