/**
  * Returns a new {@link PFBuilder} of {@link java.lang.Iterable} with a default case statement
  * added.
  *
  * @param apply the function to apply for the given argument - must return an {@link
  *     java.lang.Iterable}
  * @return a builder with the case statement added
  */
 public static PFBuilder<Object, Iterable<Object>> matchAny(final IterableApply<Object> apply) {
   return Match.matchAny(apply);
 }