:modify-sexpr-by-type
{"java.util.concurrent.CompletableFuture"
[(fn [options sexpr]
(if (.isDone sexpr)
(str "<CompletableFuture DONE: " (.get sexpr) ">")
"")) nil]}
Currently having to use this to print one, this should be a pretty common type to handle by zprint directly?