List of usage examples for android.support.v4.util IntSet IntSet
public IntSet(int initialCapacity)
From source file:com.telly.mrvector.MrVector.java
public static void register(@DrawableRes int... resources) { if (resources == null || resources.length < 1) { return;// w ww . j av a 2 s . com } if (sVectorResources == null) { sVectorResources = new IntSet(resources.length); } sVectorResources.addAll(resources); }