return result.toImmutable();
}
public ImmutableLongSet collectLong(LongFunction<? super T> longFunction)
{
LongHashSet result = new LongHashSet(this.size());
this.forEach(new CollectLongProcedure<T>(longFunction, result));
return result.toImmutable();
}