scala

Predef

object Predef extends LowPriorityImplicits

The Predef object provides definitions that are accessible in all Scala compilation units without explicit qualification.

The Predef object provides definitions that are accessible in all Scala compilation units without explicit qualification.

linear super types: LowPriorityImplicits, AnyRef, Any
source: Predef.scala
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Predef
  2. LowPriorityImplicits
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All
Impl.
  1. Concrete
  2. Abstract

Type Members

  1. class <%< [-From, +To] extends (From) ⇒ To with Serializable

    attributes: sealed abstract
    annotations: @deprecated( message = "Use From => To instead" )
      deprecated:
    1. Use From => To instead

  2. class <:< [-From, +To] extends (From) ⇒ To with Serializable

    An instance of A <:< B witnesses that A is a subtype of B.

  3. class =:= [From, To] extends (From) ⇒ To with Serializable

    An instance of A =:= B witnesses that the types A and B are equal.

  4. class ArrowAssoc [A] extends AnyRef

    attributes: final
  5. type Class [T] = Class[T]

  6. type ClassManifest [T] = ClassManifest[T]

  7. class DummyImplicit extends AnyRef

    A type for which there is always an implicit value.

  8. class Ensuring [A] extends AnyRef

    attributes: final
  9. type Function [-A, +B] = (A) ⇒ B

  10. type Manifest [T] = Manifest[T]

  11. type Map [A, +B] = Map[A, B]

  12. type OptManifest [T] = OptManifest[T]

  13. type Pair [+A, +B] = (A, B)

  14. type Set [A] = Set[A]

  15. type String = String

  16. type Triple [+A, +B, +C] = (A, B, C)

Value Members

  1. def != ( arg0 : AnyRef ) : Boolean

    attributes: final
    definition classes: AnyRef
  2. def != ( arg0 : Any ) : Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality.

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ## () : Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf [T0] () : T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf [T0] () : Boolean

    attributes: final
    definition classes: AnyRef
  6. object <%< extends Serializable

  7. object =:= extends Serializable

  8. def == ( arg0 : AnyRef ) : Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  9. def == ( arg0 : Any ) : Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: Any
  10. val AnyRef : SpecializableCompanion

  11. implicit def Boolean2boolean ( x : Boolean ) : Boolean

    attributes: implicit
  12. implicit def Boolean2booleanNullConflict ( x : Null ) : Boolean

    attributes: implicit
    definition classes: LowPriorityImplicits
  13. implicit def Byte2byte ( x : Byte ) : Byte

    attributes: implicit
  14. implicit def Byte2byteNullConflict ( x : Null ) : Byte

    attributes: implicit
    definition classes: LowPriorityImplicits
  15. implicit def Character2char ( x : Character ) : Char

    attributes: implicit
  16. implicit def Character2charNullConflict ( x : Null ) : Char

    attributes: implicit
    definition classes: LowPriorityImplicits
  17. val ClassManifest : reflect.ClassManifest.type

  18. implicit def Double2double ( x : Double ) : Double

    attributes: implicit
  19. implicit def Double2doubleNullConflict ( x : Null ) : Double

    attributes: implicit
    definition classes: LowPriorityImplicits
  20. object DummyImplicit extends AnyRef

  21. implicit def Float2float ( x : Float ) : Float

    attributes: implicit
  22. implicit def Float2floatNullConflict ( x : Null ) : Float

    attributes: implicit
    definition classes: LowPriorityImplicits
  23. implicit def Integer2int ( x : Integer ) : Int

    attributes: implicit
  24. implicit def Integer2intNullConflict ( x : Null ) : Int

    attributes: implicit
    definition classes: LowPriorityImplicits
  25. implicit def Long2long ( x : Long ) : Long

    attributes: implicit
  26. implicit def Long2longNullConflict ( x : Null ) : Long

    attributes: implicit
    definition classes: LowPriorityImplicits
  27. val Manifest : reflect.Manifest.type

  28. val Map : scala.collection.immutable.Map.type

  29. val NoManifest : reflect.NoManifest.type

  30. object Pair extends Serializable

  31. val Set : scala.collection.immutable.Set.type

  32. implicit def Short2short ( x : Short ) : Short

    attributes: implicit
  33. implicit def Short2shortNullConflict ( x : Null ) : Short

    attributes: implicit
    definition classes: LowPriorityImplicits
  34. object Triple extends Serializable

  35. implicit def any2ArrowAssoc [A] ( x : A ) : ArrowAssoc[A]

    attributes: implicit
  36. implicit def any2Ensuring [A] ( x : A ) : Ensuring[A]

    attributes: implicit
  37. implicit def any2stringadd ( x : Any ) : StringAdd

    attributes: implicit
  38. implicit def arrayToCharSequence ( xs : Array[Char] ) : CharSequence

    attributes: implicit
  39. def asInstanceOf [T0] : T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object.

    attributes: final
    definition classes: Any
  40. def assert ( assertion : Boolean , message : ⇒ Any ) : Unit

    Tests an expression, throwing an AssertionError if false.

    Tests an expression, throwing an AssertionError if false. Calls to this method will not be generated if -Xelide-below is at least ASSERTION.

    annotations: @elidable( level = ASSERTION )
      see also:
    1. elidable

  41. def assert ( assertion : Boolean ) : Unit

    Tests an expression, throwing an AssertionError if false.

    Tests an expression, throwing an AssertionError if false. Calls to this method will not be generated if -Xelide-below is at least ASSERTION.

    annotations: @elidable( level = ASSERTION )
      see also:
    1. elidable

  42. def assume ( assumption : Boolean , message : ⇒ Any ) : Unit

    Tests an expression, throwing an AssertionError if false.

    Tests an expression, throwing an AssertionError if false. This method differs from assert only in the intent expressed: assert contains a predicate which needs to be proven, while assume contains an axiom for a static checker. Calls to this method will not be generated if -Xelide-below is at least ASSERTION.

    annotations: @elidable( level = ASSERTION )
      see also:
    1. elidable

  43. def assume ( assumption : Boolean ) : Unit

    Tests an expression, throwing an AssertionError if false.

    Tests an expression, throwing an AssertionError if false. This method differs from assert only in the intent expressed: assert contains a predicate which needs to be proven, while assume contains an axiom for a static checker. Calls to this method will not be generated if -Xelide-below is at least ASSERTION.

    annotations: @elidable( level = ASSERTION )
      see also:
    1. elidable

  44. implicit def augmentString ( x : String ) : StringOps

    attributes: implicit
  45. implicit def boolean2Boolean ( x : Boolean ) : Boolean

    attributes: implicit
  46. implicit def boolean2BooleanConflict ( x : Boolean ) : AnyRef

    attributes: implicit
  47. implicit def booleanArrayOps ( xs : Array[Boolean] ) : ArrayOps[Boolean]

    attributes: implicit
  48. implicit def booleanWrapper ( x : Boolean ) : RichBoolean

    attributes: implicit
    definition classes: LowPriorityImplicits
  49. implicit def byte2Byte ( x : Byte ) : Byte

    attributes: implicit
  50. implicit def byte2ByteConflict ( x : Byte ) : AnyRef

    attributes: implicit
  51. implicit def byte2double ( x : Byte ) : Double

    attributes: implicit
  52. implicit def byte2float ( x : Byte ) : Float

    attributes: implicit
  53. implicit def byte2int ( x : Byte ) : Int

    attributes: implicit
  54. implicit def byte2long ( x : Byte ) : Long

    attributes: implicit
  55. implicit def byte2short ( x : Byte ) : Short

    attributes: implicit
  56. implicit def byteArrayOps ( xs : Array[Byte] ) : ArrayOps[Byte]

    attributes: implicit
  57. implicit def byteWrapper ( x : Byte ) : RichByte

    We prefer the java.

    We prefer the java.lang.* boxed types to these wrappers in any potential conflicts. Conflicts do exist because the wrappers need to implement ScalaNumber in order to have a symmetric equals method, but that implies implementing java.lang.Number as well.

    attributes: implicit
    definition classes: LowPriorityImplicits
  58. implicit def char2Character ( x : Char ) : Character

    attributes: implicit
  59. implicit def char2CharacterConflict ( x : Char ) : AnyRef

    attributes: implicit
  60. implicit def char2double ( x : Char ) : Double

    attributes: implicit
  61. implicit def char2float ( x : Char ) : Float

    attributes: implicit
  62. implicit def char2int ( x : Char ) : Int

    attributes: implicit
  63. implicit def char2long ( x : Char ) : Long

    attributes: implicit
  64. implicit def charArrayOps ( xs : Array[Char] ) : ArrayOps[Char]

    attributes: implicit
  65. implicit def charWrapper ( c : Char ) : RichChar

    attributes: implicit
    definition classes: LowPriorityImplicits
  66. def classManifest [T] (implicit m : ClassManifest[T] ) : ClassManifest[T]

  67. def classOf [T] : Class[T]

    Return the runtime representation of a class type.

    Return the runtime representation of a class type. This is a stub method. The actual implementation is filled in by the compiler.

  68. def clone () : AnyRef

    This method creates and returns a copy of the receiver object.

    This method creates and returns a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    attributes: protected[lang]
    definition classes: AnyRef
    annotations: @throws()
  69. implicit def conforms [A] : <:<[A, A]

    attributes: implicit
  70. implicit def double2Double ( x : Double ) : Double

    attributes: implicit
  71. implicit def double2DoubleConflict ( x : Double ) : AnyRef

    attributes: implicit
  72. implicit def doubleArrayOps ( xs : Array[Double] ) : ArrayOps[Double]

    attributes: implicit
  73. implicit def doubleWrapper ( x : Double ) : RichDouble

    attributes: implicit
    definition classes: LowPriorityImplicits
  74. def eq ( arg0 : AnyRef ) : Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality.

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  75. def equals ( arg0 : Any ) : Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same Int (o1.hashCode.equals(o2.hashCode)).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: AnyRef → Any
  76. def error ( message : String ) : Nothing

    annotations: @deprecated( message = "Use sys.error(message) instead" )
      deprecated:
    1. Use sys.error(message) instead

  77. implicit def exceptionWrapper ( exc : Throwable ) : RichException

    attributes: implicit
  78. def exit ( status : Int ) : Nothing

    annotations: @deprecated( message = "Use sys.exit(status) instead" )
      deprecated:
    1. Use sys.exit(status) instead

  79. def exit () : Nothing

    annotations: @deprecated( message = "Use sys.exit() instead" )
      deprecated:
    1. Use sys.exit() instead

  80. implicit def fallbackStringCanBuildFrom [T] : CanBuildFrom[String, T, IndexedSeq[T]]

    attributes: implicit
    definition classes: LowPriorityImplicits
  81. def finalize () : Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    The details of when and if the finalize method are invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    attributes: protected[lang]
    definition classes: AnyRef
    annotations: @throws()
  82. implicit def float2Float ( x : Float ) : Float

    attributes: implicit
  83. implicit def float2FloatConflict ( x : Float ) : AnyRef

    attributes: implicit
  84. implicit def float2double ( x : Float ) : Double

    attributes: implicit
  85. implicit def floatArrayOps ( xs : Array[Float] ) : ArrayOps[Float]

    attributes: implicit
  86. implicit def floatWrapper ( x : Float ) : RichFloat

    attributes: implicit
    definition classes: LowPriorityImplicits
  87. def format ( text : String , xs : Any* ) : String

    annotations: @deprecated( message = ... )
      deprecated:
    1. Use formatString.format(args: _*) or arg.formatted(formatString) instead

  88. implicit def genericArrayOps [T] ( xs : Array[T] ) : ArrayOps[T]

    attributes: implicit
  89. implicit def genericWrapArray [T] ( xs : Array[T] ) : WrappedArray[T]

    attributes: implicit
    definition classes: LowPriorityImplicits
  90. def getClass () : java.lang.Class[_ <: java.lang.Object]

    Returns a representation that corresponds to the dynamic class of the receiver object.

    Returns a representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    attributes: final
    definition classes: AnyRef
  91. def hashCode () : Int

    Returns a hash code value for the object.

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object.

    definition classes: AnyRef → Any
  92. def identity [A] ( x : A ) : A

  93. def implicitly [T] (implicit e : T ) : T

  94. implicit def int2Integer ( x : Int ) : Integer

    attributes: implicit
  95. implicit def int2IntegerConflict ( x : Int ) : AnyRef

    attributes: implicit
  96. implicit def int2double ( x : Int ) : Double

    attributes: implicit
  97. implicit def int2float ( x : Int ) : Float

    attributes: implicit
  98. implicit def int2long ( x : Int ) : Long

    attributes: implicit
  99. implicit def intArrayOps ( xs : Array[Int] ) : ArrayOps[Int]

    attributes: implicit
  100. implicit def intWrapper ( x : Int ) : RichInt

    attributes: implicit
    definition classes: LowPriorityImplicits
  101. def isInstanceOf [T0] : Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  102. def locally [T] ( x : T ) : T

    annotations: @inline()
  103. implicit def long2Long ( x : Long ) : Long

    attributes: implicit
  104. implicit def long2LongConflict ( x : Long ) : AnyRef

    attributes: implicit
  105. implicit def long2double ( x : Long ) : Double

    attributes: implicit
  106. implicit def long2float ( x : Long ) : Float

    attributes: implicit
  107. implicit def longArrayOps ( xs : Array[Long] ) : ArrayOps[Long]

    attributes: implicit
  108. implicit def longWrapper ( x : Long ) : RichLong

    attributes: implicit
    definition classes: LowPriorityImplicits
  109. def manifest [T] (implicit m : Manifest[T] ) : Manifest[T]

  110. def ne ( arg0 : AnyRef ) : Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality.

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  111. def notify () : Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  112. def notifyAll () : Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  113. def optManifest [T] (implicit m : OptManifest[T] ) : OptManifest[T]

  114. def print ( x : Any ) : Unit

  115. def printf ( text : String , xs : Any* ) : Unit

  116. def println ( x : Any ) : Unit

  117. def println () : Unit

  118. def readBoolean () : Boolean

  119. def readByte () : Byte

  120. def readChar () : Char

  121. def readDouble () : Double

  122. def readFloat () : Float

  123. def readInt () : Int

  124. def readLine ( text : String , args : Any* ) : String

  125. def readLine () : String

  126. def readLong () : Long

  127. def readShort () : Short

  128. def readf ( format : String ) : List[Any]

  129. def readf1 ( format : String ) : Any

  130. def readf2 ( format : String ) : (Any, Any)

  131. def readf3 ( format : String ) : (Any, Any, Any)

  132. implicit def refArrayOps [T <: AnyRef] ( xs : Array[T] ) : ArrayOps[T]

    attributes: implicit
  133. def require ( requirement : Boolean , message : ⇒ Any ) : Unit

    Tests an expression, throwing an IllegalArgumentException if false.

    Tests an expression, throwing an IllegalArgumentException if false. This method is similar to assert, but blames the caller of the method for violating the condition.

  134. def require ( requirement : Boolean ) : Unit

    Tests an expression, throwing an IllegalArgumentException if false.

    Tests an expression, throwing an IllegalArgumentException if false. This method is similar to assert, but blames the caller of the method for violating the condition.

  135. implicit def seqToCharSequence ( xs : IndexedSeq[Char] ) : CharSequence

    attributes: implicit
  136. implicit def short2Short ( x : Short ) : Short

    attributes: implicit
  137. implicit def short2ShortConflict ( x : Short ) : AnyRef

    attributes: implicit
  138. implicit def short2double ( x : Short ) : Double

    attributes: implicit
  139. implicit def short2float ( x : Short ) : Float

    attributes: implicit
  140. implicit def short2int ( x : Short ) : Int

    attributes: implicit
  141. implicit def short2long ( x : Short ) : Long

    attributes: implicit
  142. implicit def shortArrayOps ( xs : Array[Short] ) : ArrayOps[Short]

    attributes: implicit
  143. implicit def shortWrapper ( x : Short ) : RichShort

    attributes: implicit
    definition classes: LowPriorityImplicits
  144. implicit def stringCanBuildFrom : CanBuildFrom[String, Char, String]

    attributes: implicit
  145. def synchronized [T0] ( arg0 : ⇒ T0 ) : T0

    attributes: final
    definition classes: AnyRef
  146. def toString () : String

    Returns a string representation of the object.

    Returns a string representation of the object.

    The default representation is platform dependent.

    returns

    a string representation of the object.

    definition classes: AnyRef → Any
  147. implicit def unaugmentString ( x : StringOps ) : String

    attributes: implicit
  148. implicit def unitArrayOps ( xs : Array[Unit] ) : ArrayOps[Unit]

    attributes: implicit
  149. implicit def unwrapString ( ws : WrappedString ) : String

    attributes: implicit
    definition classes: LowPriorityImplicits
  150. def wait () : Unit

    attributes: final
    definition classes: AnyRef
    annotations: @throws()
  151. def wait ( arg0 : Long , arg1 : Int ) : Unit

    attributes: final
    definition classes: AnyRef
    annotations: @throws()
  152. def wait ( arg0 : Long ) : Unit

    attributes: final
    definition classes: AnyRef
    annotations: @throws()
  153. implicit def wrapBooleanArray ( xs : Array[Boolean] ) : WrappedArray[Boolean]

    attributes: implicit
    definition classes: LowPriorityImplicits
  154. implicit def wrapByteArray ( xs : Array[Byte] ) : WrappedArray[Byte]

    attributes: implicit
    definition classes: LowPriorityImplicits
  155. implicit def wrapCharArray ( xs : Array[Char] ) : WrappedArray[Char]

    attributes: implicit
    definition classes: LowPriorityImplicits
  156. implicit def wrapDoubleArray ( xs : Array[Double] ) : WrappedArray[Double]

    attributes: implicit
    definition classes: LowPriorityImplicits
  157. implicit def wrapFloatArray ( xs : Array[Float] ) : WrappedArray[Float]

    attributes: implicit
    definition classes: LowPriorityImplicits
  158. implicit def wrapIntArray ( xs : Array[Int] ) : WrappedArray[Int]

    attributes: implicit
    definition classes: LowPriorityImplicits
  159. implicit def wrapLongArray ( xs : Array[Long] ) : WrappedArray[Long]

    attributes: implicit
    definition classes: LowPriorityImplicits
  160. implicit def wrapRefArray [T <: AnyRef] ( xs : Array[T] ) : WrappedArray[T]

    attributes: implicit
    definition classes: LowPriorityImplicits
  161. implicit def wrapShortArray ( xs : Array[Short] ) : WrappedArray[Short]

    attributes: implicit
    definition classes: LowPriorityImplicits
  162. implicit def wrapString ( s : String ) : WrappedString

    attributes: implicit
    definition classes: LowPriorityImplicits
  163. implicit def wrapUnitArray ( xs : Array[Unit] ) : WrappedArray[Unit]

    attributes: implicit
    definition classes: LowPriorityImplicits
  164. implicit def zipped2ToTraversable [El1, El2] ( zz : (_$1, _$2)#Zipped[_, El1, _, El2] ) : Traversable[(El1, El2)]

    attributes: implicit
  165. implicit def zipped3ToTraversable [El1, El2, El3] ( zz : (_$5, _$6, _$7)#Zipped[_, El1, _, El2, _, El3] ) : Traversable[(El1, El2, El3)]

    attributes: implicit

Inherited from LowPriorityImplicits

Inherited from AnyRef

Inherited from Any