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