コード例 #1
0
 public boolean containsAll(Collection c) {
   ensureInitFastListCache();
   boolean ret = _cache.containsAll(c);
   if (ret) {
     return true;
   }
   return _persistentList.containsAll(new JdkCollectionIterable4(c));
 }