Trait

scala.reflect.api.StandardLiftables

StandardLiftableInstances

Related Doc: package StandardLiftables

Permalink

trait StandardLiftableInstances extends AnyRef

Source
StandardLiftables.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StandardLiftableInstances
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Universe.StandardLiftableInstances to any2stringadd[Universe.StandardLiftableInstances] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Universe.StandardLiftableInstances, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Universe.StandardLiftableInstances to ArrowAssoc[Universe.StandardLiftableInstances] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

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

    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    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 type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  7. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create 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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  8. def ensuring(cond: (Universe.StandardLiftableInstances) ⇒ Boolean, msg: ⇒ Any): Universe.StandardLiftableInstances

    Permalink
    Implicit information
    This member is added by an implicit conversion from Universe.StandardLiftableInstances to Ensuring[Universe.StandardLiftableInstances] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (Universe.StandardLiftableInstances) ⇒ Boolean): Universe.StandardLiftableInstances

    Permalink
    Implicit information
    This member is added by an implicit conversion from Universe.StandardLiftableInstances to Ensuring[Universe.StandardLiftableInstances] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): Universe.StandardLiftableInstances

    Permalink
    Implicit information
    This member is added by an implicit conversion from Universe.StandardLiftableInstances to Ensuring[Universe.StandardLiftableInstances] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): Universe.StandardLiftableInstances

    Permalink
    Implicit information
    This member is added by an implicit conversion from Universe.StandardLiftableInstances to Ensuring[Universe.StandardLiftableInstances] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional 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).

    returns

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

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

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

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  15. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Universe.StandardLiftableInstances to StringFormat[Universe.StandardLiftableInstances] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]

    Permalink

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

    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.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  17. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the 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 specified type.

    returns

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

    Definition Classes
    Any
  19. implicit def liftArray[T](implicit arg0: Universe.Liftable[T]): Universe.Liftable[Array[T]]

    Permalink
  20. implicit def liftBoolean[T <: Boolean]: Universe.Liftable[T]

    Permalink
  21. implicit def liftByte[T <: Byte]: Universe.Liftable[T]

    Permalink
  22. implicit def liftChar[T <: Char]: Universe.Liftable[T]

    Permalink
  23. implicit def liftConstant[T <: Universe.Constant]: Universe.Liftable[T]

    Permalink
  24. implicit def liftDouble[T <: Double]: Universe.Liftable[T]

    Permalink
  25. implicit def liftEither[L, R](implicit arg0: Universe.Liftable[L], arg1: Universe.Liftable[R]): Universe.Liftable[Either[L, R]]

    Permalink
  26. implicit def liftExpr[T <: Universe.Expr[_]]: Universe.Liftable[T]

    Permalink
  27. implicit def liftFloat[T <: Float]: Universe.Liftable[T]

    Permalink
  28. implicit def liftInt[T <: Int]: Universe.Liftable[T]

    Permalink
  29. implicit def liftLeft[L, R](implicit arg0: Universe.Liftable[L]): Universe.Liftable[Left[L, R]]

    Permalink
  30. implicit def liftList[T](implicit arg0: Universe.Liftable[T]): Universe.Liftable[List[T]]

    Permalink
  31. implicit def liftLong[T <: Long]: Universe.Liftable[T]

    Permalink
  32. implicit def liftMap[K, V](implicit arg0: Universe.Liftable[K], arg1: Universe.Liftable[V]): Universe.Liftable[Map[K, V]]

    Permalink
  33. implicit def liftName[T <: Universe.Name]: Universe.Liftable[T]

    Permalink
  34. implicit def liftNil: Universe.Liftable[collection.immutable.Nil.type]

    Permalink
  35. implicit def liftNone: Universe.Liftable[None.type]

    Permalink
  36. implicit def liftOption[T](implicit arg0: Universe.Liftable[T]): Universe.Liftable[Option[T]]

    Permalink
  37. implicit def liftRight[L, R](implicit arg0: Universe.Liftable[R]): Universe.Liftable[Right[L, R]]

    Permalink
  38. implicit def liftScalaSymbol: Universe.Liftable[Symbol]

    Permalink
  39. implicit def liftSet[T](implicit arg0: Universe.Liftable[T]): Universe.Liftable[Set[T]]

    Permalink
  40. implicit def liftShort[T <: Short]: Universe.Liftable[T]

    Permalink
  41. implicit def liftSome[T](implicit arg0: Universe.Liftable[T]): Universe.Liftable[Some[T]]

    Permalink
  42. implicit def liftString[T <: String]: Universe.Liftable[T]

    Permalink
  43. implicit def liftTree[T <: Universe.Tree]: Universe.Liftable[T]

    Permalink
  44. implicit def liftTuple10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)]

    Permalink
  45. implicit def liftTuple11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)]

    Permalink
  46. implicit def liftTuple12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)]

    Permalink
  47. implicit def liftTuple13[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)]

    Permalink
  48. implicit def liftTuple14[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)]

    Permalink
  49. implicit def liftTuple15[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14], liftT15: Universe.Liftable[T15]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)]

    Permalink
  50. implicit def liftTuple16[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14], liftT15: Universe.Liftable[T15], liftT16: Universe.Liftable[T16]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)]

    Permalink
  51. implicit def liftTuple17[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14], liftT15: Universe.Liftable[T15], liftT16: Universe.Liftable[T16], liftT17: Universe.Liftable[T17]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17)]

    Permalink
  52. implicit def liftTuple18[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14], liftT15: Universe.Liftable[T15], liftT16: Universe.Liftable[T16], liftT17: Universe.Liftable[T17], liftT18: Universe.Liftable[T18]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18)]

    Permalink
  53. implicit def liftTuple19[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14], liftT15: Universe.Liftable[T15], liftT16: Universe.Liftable[T16], liftT17: Universe.Liftable[T17], liftT18: Universe.Liftable[T18], liftT19: Universe.Liftable[T19]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19)]

    Permalink
  54. implicit def liftTuple2[T1, T2](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2]): Universe.Liftable[(T1, T2)]

    Permalink
  55. implicit def liftTuple20[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14], liftT15: Universe.Liftable[T15], liftT16: Universe.Liftable[T16], liftT17: Universe.Liftable[T17], liftT18: Universe.Liftable[T18], liftT19: Universe.Liftable[T19], liftT20: Universe.Liftable[T20]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20)]

    Permalink
  56. implicit def liftTuple21[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14], liftT15: Universe.Liftable[T15], liftT16: Universe.Liftable[T16], liftT17: Universe.Liftable[T17], liftT18: Universe.Liftable[T18], liftT19: Universe.Liftable[T19], liftT20: Universe.Liftable[T20], liftT21: Universe.Liftable[T21]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21)]

    Permalink
  57. implicit def liftTuple22[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9], liftT10: Universe.Liftable[T10], liftT11: Universe.Liftable[T11], liftT12: Universe.Liftable[T12], liftT13: Universe.Liftable[T13], liftT14: Universe.Liftable[T14], liftT15: Universe.Liftable[T15], liftT16: Universe.Liftable[T16], liftT17: Universe.Liftable[T17], liftT18: Universe.Liftable[T18], liftT19: Universe.Liftable[T19], liftT20: Universe.Liftable[T20], liftT21: Universe.Liftable[T21], liftT22: Universe.Liftable[T22]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22)]

    Permalink
  58. implicit def liftTuple3[T1, T2, T3](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3]): Universe.Liftable[(T1, T2, T3)]

    Permalink
  59. implicit def liftTuple4[T1, T2, T3, T4](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4]): Universe.Liftable[(T1, T2, T3, T4)]

    Permalink
  60. implicit def liftTuple5[T1, T2, T3, T4, T5](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5]): Universe.Liftable[(T1, T2, T3, T4, T5)]

    Permalink
  61. implicit def liftTuple6[T1, T2, T3, T4, T5, T6](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6]): Universe.Liftable[(T1, T2, T3, T4, T5, T6)]

    Permalink
  62. implicit def liftTuple7[T1, T2, T3, T4, T5, T6, T7](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7)]

    Permalink
  63. implicit def liftTuple8[T1, T2, T3, T4, T5, T6, T7, T8](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8)]

    Permalink
  64. implicit def liftTuple9[T1, T2, T3, T4, T5, T6, T7, T8, T9](implicit liftT1: Universe.Liftable[T1], liftT2: Universe.Liftable[T2], liftT3: Universe.Liftable[T3], liftT4: Universe.Liftable[T4], liftT5: Universe.Liftable[T5], liftT6: Universe.Liftable[T6], liftT7: Universe.Liftable[T7], liftT8: Universe.Liftable[T8], liftT9: Universe.Liftable[T9]): Universe.Liftable[(T1, T2, T3, T4, T5, T6, T7, T8, T9)]

    Permalink
  65. implicit def liftType[T <: Universe.Type]: Universe.Liftable[T]

    Permalink
  66. implicit def liftTypeTag[T <: Universe.WeakTypeTag[_]]: Universe.Liftable[T]

    Permalink
  67. implicit def liftUnit: Universe.Liftable[Unit]

    Permalink
  68. implicit def liftVector[T](implicit arg0: Universe.Liftable[T]): Universe.Liftable[Vector[T]]

    Permalink
  69. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

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

    Definition Classes
    AnyRef
  70. final def notify(): Unit

    Permalink

    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.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  71. final def notifyAll(): Unit

    Permalink

    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.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  72. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  73. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AnyRef → Any
  74. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  75. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  76. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  77. def [B](y: B): (Universe.StandardLiftableInstances, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Universe.StandardLiftableInstances to ArrowAssoc[Universe.StandardLiftableInstances] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc