List of usage examples for com.google.common.collect ImmutableSet of
@SuppressWarnings("unchecked") public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others)
From source file:com.google.template.soy.bidifunctions.BidiFunctions.java
public static ImmutableSet<SoySourceFunction> functions(Supplier<BidiGlobalDir> bidiGlobalDir) { return ImmutableSet.of(new BidiDirAttrFunction(bidiGlobalDir), new BidiEndEdgeFunction(bidiGlobalDir), new BidiGlobalDirFunction(bidiGlobalDir), new BidiMarkAfterFunction(bidiGlobalDir), new BidiMarkFunction(bidiGlobalDir), new BidiStartEdgeFunction(bidiGlobalDir), new BidiTextDirFunction()); }