in src/main/kotlin/jsitter/api/ReducingZipper.kt [22:33]
override fun down(): Zipper<*>? {
val down = z.down()
return if (down == null) {
null
}
else {
ReducingZipper(
parentOrInit = this,
z = down,
reducer = this.reducer)
}
}