MCPcopy Index your code
hub / github.com/questdb/questdb / clearObjList

Method clearObjList

core/src/main/java/io/questdb/std/Misc.java:85–94  ·  view source on GitHub ↗
(ObjList<? extends Mutable> args)

Source from the content-addressed store, hash-verified

83 }
84
85 public static void clearObjList(ObjList<? extends Mutable> args) {
86 if (args != null) {
87 for (int i = 0, n = args.size(); i < n; i++) {
88 Mutable m = args.getQuick(i);
89 if (m != null) {
90 m.clear();
91 }
92 }
93 }
94 }
95
96 public static <T extends Closeable> T free(T object) {
97 if (object != null) {

Callers 15

clearMethod · 0.95
closeMethod · 0.95
clearMethod · 0.95
closeMethod · 0.95
closeMethod · 0.95
closeMethod · 0.95
closeMethod · 0.95
closeMethod · 0.95
clearMethod · 0.95
clearMethod · 0.95
clearMethod · 0.95
closeMethod · 0.95

Calls 3

clearMethod · 0.95
sizeMethod · 0.65
getQuickMethod · 0.65

Tested by

no test coverage detected