I\'d like to create new item that similarly to Util.Map.Entry that will contain the structure key, value.
Util.Map.Entry
key
value
The problem is that
If you are using Clojure, you have another option:
(defn map-entry [k v] (clojure.lang.MapEntry/create k v))