MCPcopy Index your code
hub / github.com/clojure/clojure / addLeft

Method addLeft

src/jvm/clojure/lang/PersistentTreeMap.java:682–684  ·  view source on GitHub ↗
(Node ins)

Source from the content-addressed store, hash-verified

680 }
681
682 Node addLeft(Node ins){
683 return red(key, val(), ins, right());
684 }
685
686 Node addRight(Node ins){
687 return red(key, val(), left(), ins);

Callers 1

addMethod · 0.45

Calls 3

redMethod · 0.80
valMethod · 0.65
rightMethod · 0.45

Tested by

no test coverage detected