Skip to content

Instantly share code, notes, and snippets.

@daniello
Created June 2, 2009 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daniello/122174 to your computer and use it in GitHub Desktop.
Save daniello/122174 to your computer and use it in GitHub Desktop.
module Java::ClojureLang::IPersistentMap
def keys
keySet()
end
def has_key?(key)
containsKey(key)
end
def include?(key)
containsKey(key)
end
def key?(key)
containsKey(key)
end
def member?(key)
containsKey(key)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment