Many

typesince v1.9.562Edit
(Many. vals)

Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(deftype Many [vals]
  Object
  (add [this o]
    (.push vals o)
    this)
  (remove [this]
    (.shift vals))
  (isEmpty [this]
    (zero? (.-length vals)))
  (toString [this]
    (str "Many: " vals)))