static <B> Map<S, B> pairToTwoElementCIMap(S key1, S key2, Pair<B> pair) {
  ret pair == null ? null : litcimap(key1, pair.a, key2, pair.b);
}