static <A, B> L<Map<A, B>> listToMapsWithSingleKey(A key, Collection<B> l) {
  new L<Map<A, B>> out;
  for (B b : unnull(l))
    out.add(litorderedmap(key, b));
  ret out;
}