Empty

typesince v1.9.562Edit
(Empty.)

Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(deftype Empty []
  Object
  (add [this o]
    (Single. o))
  (remove [this]
    (throw (js/Error. (str "Removing object from empty buffer"))))
  (isEmpty [this]
    true)
  (toString [this]
    "Empty"))