parent method

keyCount? parent(
  1. int i
)

Implementation

keyCount? parent(int i){
  if(i<2)return null;
  return map[array[(i/2).floor()]];
}