MCPcopy Create free account
hub / github.com/Z3Prover/z3 / insert

Method insert

src/api/java/Z3ReferenceQueue.java:121–127  ·  view source on GitHub ↗
(Reference<?> ref)

Source from the content-addressed store, hash-verified

119 }
120
121 private void insert(Reference<?> ref) {
122 assert next != null;
123 ref.prev = this;
124 ref.next = this.next;
125 ref.next.prev = ref;
126 next = ref;
127 }
128
129 abstract void decRef(Context ctx, long z3Obj);
130 }

Callers 1

storeReferenceMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected