代码搜索:Collections
找到约 10,000 项符合「Collections」的源代码
代码结果 10,000
www.eeworm.com/read/169400/5422090
cs collections.cs
/*
* Created by SharpDevelop.
* User: Forstmeier Helmut
* Date: 30.12.2005
* Time: 11:05
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using S
www.eeworm.com/read/167133/5468278
java collections.java
/* Collections.java -- Utility class with methods to operate on collections
Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Class
www.eeworm.com/read/163959/5504611
java collections.java
//$Id: Collections.java,v 1.15 2005/04/02 20:33:54 oneovthafew Exp $
package org.hibernate.engine;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibe
www.eeworm.com/read/340665/3283075
java collections.java
/* Collections.java -- Utility class with methods to operate on collections
Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Class
www.eeworm.com/read/326747/3469562
java collections.java
//$Id: Collections.java 8694 2005-11-28 19:28:17Z steveebersole $
package org.hibernate.engine;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.hibernate.AssertionFailure;
import
www.eeworm.com/read/312199/3675214
js collections.js
/*
Copyright (c) 2004-2006, The Dojo Foundation
All Rights Reserved.
Licensed under the Academic Free License version 2.1 or above OR the
modified BSD license. For more information on Dojo licens
www.eeworm.com/read/305277/3778315
check collections.check
***** mutable.HashSet:
test1: 14005
test2: 25005003, iters = 5000
test3: 25005003
***** immutable.Set:
test1: 14005
test2: 25005003, iters = 5000
test3: 25005003
***** immutable.ListSet:
test1: 14005
www.eeworm.com/read/305277/3778365
scala collections.scala
import collection._
import scala.compat.Platform.currentTime
object Test extends Application {
val printTime = false
def sum[A](xs: Iterable[Int]) = (0 /: xs)((x, y) => x + y)
def time(op: =
www.eeworm.com/read/305277/3778656
scala collections.scala
package mixins;
import scala.collection.mutable._;
class Collections extends HashSet[Int] with ObservableSet[Int,Collections] {
override def +=(elem: Int): Unit = super.+=(elem);
override def -=