object DeboxMap extends Serializable
Object containing factory methods for DeboxMaps.
- Alphabetic
- By Inheritance
- DeboxMap
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply[A, B](ks: Array[A], vs: Array[B])(implicit arg0: ClassTag[A], arg1: ClassTag[B]): DeboxMap[A, B]
Creates a map from an array of keys and another array of values.
Creates a map from an array of keys and another array of values.
- A
the type of the keys of the new map
- B
the type of the values of the new map
- ks
the array of keys to add to the map
- vs
the array of corresponding values to add to the map
- returns
a new
DeboxMapwith the given elements
-
def
apply[A, B]()(implicit arg0: ClassTag[A], arg1: ClassTag[B]): DeboxMap[A, B]
Creates an empty DeboxMap.
Creates an empty DeboxMap.
- A
the type of the keys of the new map
- B
the type of the values of the new map
- returns
a new, empty
DeboxMap.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
empty[A, B](implicit arg0: ClassTag[A], arg1: ClassTag[B]): DeboxMap[A, B]
Creates an empty
DeboxMap.Creates an empty
DeboxMap.- A
the type of the keys of the new map
- B
the type of the values of the new map
- returns
a new, empty
DeboxMap.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
ofDim[A, B](n: Int)(implicit arg0: ClassTag[A], arg1: ClassTag[B]): DeboxMap[A, B]
Creates a DeboxMap preallocated to a particular size.
Creates a DeboxMap preallocated to a particular size. Note that the internal representation may allocate more space than requested to satisfy the requirements of internal alignment. DeboxMap uses arrays whose lengths are powers of two.
- A
the type of the keys of the new map
- B
the type of the values of the new map
- n
the minimum number of elements to allocate space for
- returns
a new
DeboxMapwith the required preallocated space.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )