(qualified-symbol? x)
Return true if x is a symbol with a namespace
(defn qualified-symbol? [x] (boolean (and (symbol? x) (namespace x) true)))