org.squeryl

PrimitiveTypeMode

object PrimitiveTypeMode extends PrimitiveTypeMode

This factory is meant to use POSOs (Plain old Scala Objects), i.e. your object use Scala's primitive types to map to columns. This can have a significant performance advantage over using object types i.e. a result set of N rows of objects with M field will generate N * M objects for the garbage collector, while POSOs with primitive types will each count for 1 for the garbage collector (to be more precise, String and Option[] fields will add a +1 in both cases, but a custom String wrapper will also add one ref, for a total of 2 refs vs a single ref per string column for the POSO). This lightweight strategy has a cost : constants and object field references cannot distinguish at compile time, so this mode is less 'strict' than one with a CustomType

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. PrimitiveTypeMode
  2. PrimitiveTypeMode
  3. QueryDsl
  4. FromSignatures
  5. JoinSignatures
  6. QueryElements
  7. StartState
  8. WhereState
  9. ComputeMeasuresSignaturesFromStartOrWhereState
  10. GroupBySignatures
  11. DslFactory
  12. SqlFunctions
  13. TypeArithmetic
  14. FieldTypes
  15. AnyRef
  16. Any
Visibility
  1. Public
  2. All

Type Members

  1. type BigDecimalType = BigDecimal

    Definition Classes
    PrimitiveTypeModeFieldTypes
  2. type BinaryType = Array[Byte]

    Definition Classes
    PrimitiveTypeModeFieldTypes
  3. type BooleanType = Boolean

    Definition Classes
    PrimitiveTypeModeFieldTypes
  4. type ByteType = Byte

    Definition Classes
    PrimitiveTypeModeFieldTypes
  5. class CountFunction extends FunctionNode[LongType] with NumericalExpression[LongType]

  6. class CountSubQueryableQuery extends Query[LongType] with ScalarQuery[LongType]

  7. type DateType = Date

    Definition Classes
    PrimitiveTypeModeFieldTypes
  8. type DoubleType = Double

    Definition Classes
    PrimitiveTypeModeFieldTypes
  9. type EnumerationValueType = Value

    Definition Classes
    PrimitiveTypeModeFieldTypes
  10. type FloatType = Float

    Definition Classes
    PrimitiveTypeModeFieldTypes
  11. type IntType = Int

    Definition Classes
    PrimitiveTypeModeFieldTypes
  12. class JoinPrecursor [A] extends AnyRef

  13. type LongType = Long

    Definition Classes
    PrimitiveTypeModeFieldTypes
  14. class ManyToManyRelationBuilder [L <: org.squeryl.KeyedEntity[_], R <: org.squeryl.KeyedEntity[_]] extends AnyRef

  15. class ManyToManyRelationImpl [L <: org.squeryl.KeyedEntity[_], R <: org.squeryl.KeyedEntity[_], A <: org.squeryl.KeyedEntity[_]] extends Table[A] with ManyToManyRelation[L, R, A]

  16. class OneToManyRelationBuilder [O <: org.squeryl.KeyedEntity[_], M] extends AnyRef

  17. class OneToManyRelationImpl [O <: org.squeryl.KeyedEntity[_], M] extends OneToManyRelation[O, M]

  18. class ScalarMeasureQuery [T] extends Query[T] with ScalarQuery[T]

  19. trait ScalarQuery [T] extends Query[T] with SingleColumnQuery[T] with SingleRowQuery[T]

  20. trait SingleColumnQuery [T] extends AnyRef

  21. trait SingleRowQuery [R] extends AnyRef

  22. type StringType = String

    Definition Classes
    PrimitiveTypeModeFieldTypes
  23. type TimestampType = Timestamp

    Definition Classes
    PrimitiveTypeModeFieldTypes
  24. type UuidType = UUID

    Definition Classes
    PrimitiveTypeModeFieldTypes

Value Members

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

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def & [A] (i: ⇒ TypedExpressionNode[A]): A

    Definition Classes
    QueryDsl
  5. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  6. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  7. implicit def __thisDsl : QueryDsl

    Attributes
    implicit
    Definition Classes
    QueryDsl
  8. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  9. def avg [A] (e: NumericalExpression[A]): UnaryAgregateFloatOp[A]

    Definition Classes
    SqlFunctions
  10. implicit def bigDecimal2ScalarBigDecimal (b: BigDecimalType): NumericalExpression[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  11. implicit def binary2ScalarBinary (b: BinaryType): BinaryExpression[BinaryType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  12. implicit def binaryOpConv1 (op: BinaryDivOp[ByteType, ByteType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  13. implicit def binaryOpConv1 (op: BinaryAMSOp[ByteType, ByteType]): NumericalTypeConversion[ByteType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  14. implicit def binaryOpConv10 (op: BinaryDivOp[ByteType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  15. implicit def binaryOpConv10 (op: BinaryAMSOp[ByteType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  16. implicit def binaryOpConv100 (op: BinaryDivOp[Option[DoubleType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  17. implicit def binaryOpConv100 (op: BinaryAMSOp[Option[DoubleType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  18. implicit def binaryOpConv100bd (op: BinaryDivOp[Option[DoubleType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  19. implicit def binaryOpConv100bd (op: BinaryAMSOp[Option[DoubleType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  20. implicit def binaryOpConv101 (op: BinaryDivOp[BigDecimalType, ByteType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  21. implicit def binaryOpConv101 (op: BinaryAMSOp[BigDecimalType, ByteType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  22. implicit def binaryOpConv102 (op: BinaryDivOp[BigDecimalType, IntType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  23. implicit def binaryOpConv102 (op: BinaryAMSOp[BigDecimalType, IntType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  24. implicit def binaryOpConv103 (op: BinaryDivOp[BigDecimalType, LongType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  25. implicit def binaryOpConv103 (op: BinaryAMSOp[BigDecimalType, LongType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  26. implicit def binaryOpConv104 (op: BinaryDivOp[BigDecimalType, FloatType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  27. implicit def binaryOpConv104 (op: BinaryAMSOp[BigDecimalType, FloatType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  28. implicit def binaryOpConv105 (op: BinaryDivOp[BigDecimalType, DoubleType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  29. implicit def binaryOpConv105 (op: BinaryAMSOp[BigDecimalType, DoubleType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  30. implicit def binaryOpConv106 (op: BinaryDivOp[BigDecimalType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  31. implicit def binaryOpConv106 (op: BinaryAMSOp[BigDecimalType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  32. implicit def binaryOpConv107 (op: BinaryDivOp[BigDecimalType, Option[ByteType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  33. implicit def binaryOpConv107 (op: BinaryAMSOp[BigDecimalType, Option[ByteType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  34. implicit def binaryOpConv108 (op: BinaryDivOp[BigDecimalType, Option[IntType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  35. implicit def binaryOpConv108 (op: BinaryAMSOp[BigDecimalType, Option[IntType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  36. implicit def binaryOpConv109 (op: BinaryDivOp[BigDecimalType, Option[LongType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  37. implicit def binaryOpConv109 (op: BinaryAMSOp[BigDecimalType, Option[LongType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  38. implicit def binaryOpConv10bd (op: BinaryDivOp[ByteType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  39. implicit def binaryOpConv10bd (op: BinaryAMSOp[ByteType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  40. implicit def binaryOpConv11 (op: BinaryDivOp[IntType, ByteType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  41. implicit def binaryOpConv11 (op: BinaryAMSOp[IntType, ByteType]): NumericalTypeConversion[IntType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  42. implicit def binaryOpConv110 (op: BinaryDivOp[BigDecimalType, Option[FloatType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  43. implicit def binaryOpConv110 (op: BinaryAMSOp[BigDecimalType, Option[FloatType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  44. implicit def binaryOpConv111 (op: BinaryDivOp[BigDecimalType, Option[DoubleType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  45. implicit def binaryOpConv111 (op: BinaryAMSOp[BigDecimalType, Option[DoubleType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  46. implicit def binaryOpConv112 (op: BinaryDivOp[BigDecimalType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  47. implicit def binaryOpConv112 (op: BinaryAMSOp[BigDecimalType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  48. implicit def binaryOpConv113 (op: BinaryDivOp[Option[BigDecimalType], ByteType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  49. implicit def binaryOpConv113 (op: BinaryAMSOp[Option[BigDecimalType], ByteType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  50. implicit def binaryOpConv114 (op: BinaryDivOp[Option[BigDecimalType], IntType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  51. implicit def binaryOpConv114 (op: BinaryAMSOp[Option[BigDecimalType], IntType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  52. implicit def binaryOpConv115 (op: BinaryDivOp[Option[BigDecimalType], LongType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  53. implicit def binaryOpConv115 (op: BinaryAMSOp[Option[BigDecimalType], LongType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  54. implicit def binaryOpConv116 (op: BinaryDivOp[Option[BigDecimalType], FloatType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  55. implicit def binaryOpConv116 (op: BinaryAMSOp[Option[BigDecimalType], FloatType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  56. implicit def binaryOpConv117 (op: BinaryDivOp[Option[BigDecimalType], DoubleType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  57. implicit def binaryOpConv117 (op: BinaryAMSOp[Option[BigDecimalType], DoubleType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  58. implicit def binaryOpConv118 (op: BinaryDivOp[Option[BigDecimalType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  59. implicit def binaryOpConv118 (op: BinaryAMSOp[Option[BigDecimalType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  60. implicit def binaryOpConv119 (op: BinaryDivOp[Option[BigDecimalType], Option[ByteType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  61. implicit def binaryOpConv119 (op: BinaryAMSOp[Option[BigDecimalType], Option[ByteType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  62. implicit def binaryOpConv12 (op: BinaryDivOp[IntType, IntType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  63. implicit def binaryOpConv12 (op: BinaryAMSOp[IntType, IntType]): NumericalTypeConversion[IntType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  64. implicit def binaryOpConv120 (op: BinaryDivOp[Option[BigDecimalType], Option[IntType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  65. implicit def binaryOpConv120 (op: BinaryAMSOp[Option[BigDecimalType], Option[IntType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  66. implicit def binaryOpConv121 (op: BinaryDivOp[Option[BigDecimalType], Option[LongType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  67. implicit def binaryOpConv121 (op: BinaryAMSOp[Option[BigDecimalType], Option[LongType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  68. implicit def binaryOpConv122 (op: BinaryDivOp[Option[BigDecimalType], Option[FloatType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  69. implicit def binaryOpConv122 (op: BinaryAMSOp[Option[BigDecimalType], Option[FloatType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  70. implicit def binaryOpConv123 (op: BinaryDivOp[Option[BigDecimalType], Option[DoubleType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  71. implicit def binaryOpConv123 (op: BinaryAMSOp[Option[BigDecimalType], Option[DoubleType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  72. implicit def binaryOpConv124 (op: BinaryDivOp[Option[BigDecimalType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  73. implicit def binaryOpConv124 (op: BinaryAMSOp[Option[BigDecimalType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  74. implicit def binaryOpConv13 (op: BinaryDivOp[IntType, LongType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  75. implicit def binaryOpConv13 (op: BinaryAMSOp[IntType, LongType]): NumericalTypeConversion[LongType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  76. implicit def binaryOpConv14 (op: BinaryDivOp[IntType, FloatType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  77. implicit def binaryOpConv14 (op: BinaryAMSOp[IntType, FloatType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  78. implicit def binaryOpConv15 (op: BinaryDivOp[IntType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  79. implicit def binaryOpConv15 (op: BinaryAMSOp[IntType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  80. implicit def binaryOpConv15bd (op: BinaryDivOp[IntType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  81. implicit def binaryOpConv15bd (op: BinaryAMSOp[IntType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  82. implicit def binaryOpConv16 (op: BinaryDivOp[IntType, Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  83. implicit def binaryOpConv16 (op: BinaryAMSOp[IntType, Option[ByteType]]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  84. implicit def binaryOpConv17 (op: BinaryDivOp[IntType, Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  85. implicit def binaryOpConv17 (op: BinaryAMSOp[IntType, Option[IntType]]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  86. implicit def binaryOpConv18 (op: BinaryDivOp[IntType, Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  87. implicit def binaryOpConv18 (op: BinaryAMSOp[IntType, Option[LongType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  88. implicit def binaryOpConv19 (op: BinaryDivOp[IntType, Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  89. implicit def binaryOpConv19 (op: BinaryAMSOp[IntType, Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  90. implicit def binaryOpConv2 (op: BinaryDivOp[ByteType, IntType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  91. implicit def binaryOpConv2 (op: BinaryAMSOp[ByteType, IntType]): NumericalTypeConversion[IntType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  92. implicit def binaryOpConv20 (op: BinaryDivOp[IntType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  93. implicit def binaryOpConv20 (op: BinaryAMSOp[IntType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  94. implicit def binaryOpConv20bd (op: BinaryDivOp[IntType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  95. implicit def binaryOpConv20bd (op: BinaryAMSOp[IntType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  96. implicit def binaryOpConv21 (op: BinaryDivOp[LongType, ByteType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  97. implicit def binaryOpConv21 (op: BinaryAMSOp[LongType, ByteType]): NumericalTypeConversion[LongType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  98. implicit def binaryOpConv22 (op: BinaryDivOp[LongType, IntType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  99. implicit def binaryOpConv22 (op: BinaryAMSOp[LongType, IntType]): NumericalTypeConversion[LongType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  100. implicit def binaryOpConv23 (op: BinaryDivOp[LongType, LongType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  101. implicit def binaryOpConv23 (op: BinaryAMSOp[LongType, LongType]): NumericalTypeConversion[LongType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  102. implicit def binaryOpConv24 (op: BinaryDivOp[LongType, FloatType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  103. implicit def binaryOpConv24 (op: BinaryAMSOp[LongType, FloatType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  104. implicit def binaryOpConv25 (op: BinaryDivOp[LongType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  105. implicit def binaryOpConv25 (op: BinaryAMSOp[LongType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  106. implicit def binaryOpConv25bd (op: BinaryDivOp[LongType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  107. implicit def binaryOpConv25bd (op: BinaryAMSOp[LongType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  108. implicit def binaryOpConv26 (op: BinaryDivOp[LongType, Option[ByteType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  109. implicit def binaryOpConv26 (op: BinaryAMSOp[LongType, Option[ByteType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  110. implicit def binaryOpConv27 (op: BinaryDivOp[LongType, Option[IntType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  111. implicit def binaryOpConv27 (op: BinaryAMSOp[LongType, Option[IntType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  112. implicit def binaryOpConv28 (op: BinaryDivOp[LongType, Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  113. implicit def binaryOpConv28 (op: BinaryAMSOp[LongType, Option[LongType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  114. implicit def binaryOpConv29 (op: BinaryDivOp[LongType, Option[FloatType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  115. implicit def binaryOpConv29 (op: BinaryAMSOp[LongType, Option[FloatType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  116. implicit def binaryOpConv3 (op: BinaryDivOp[ByteType, LongType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  117. implicit def binaryOpConv3 (op: BinaryAMSOp[ByteType, LongType]): NumericalTypeConversion[LongType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  118. implicit def binaryOpConv30 (op: BinaryDivOp[LongType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  119. implicit def binaryOpConv30 (op: BinaryAMSOp[LongType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  120. implicit def binaryOpConv30bd (op: BinaryDivOp[LongType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  121. implicit def binaryOpConv30bd (op: BinaryAMSOp[LongType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  122. implicit def binaryOpConv31 (op: BinaryDivOp[FloatType, ByteType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  123. implicit def binaryOpConv31 (op: BinaryAMSOp[FloatType, ByteType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  124. implicit def binaryOpConv32 (op: BinaryDivOp[FloatType, IntType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  125. implicit def binaryOpConv32 (op: BinaryAMSOp[FloatType, IntType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  126. implicit def binaryOpConv33 (op: BinaryDivOp[FloatType, LongType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  127. implicit def binaryOpConv33 (op: BinaryAMSOp[FloatType, LongType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  128. implicit def binaryOpConv34 (op: BinaryDivOp[FloatType, FloatType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  129. implicit def binaryOpConv34 (op: BinaryAMSOp[FloatType, FloatType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  130. implicit def binaryOpConv35 (op: BinaryDivOp[FloatType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  131. implicit def binaryOpConv35 (op: BinaryAMSOp[FloatType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  132. implicit def binaryOpConv35bd (op: BinaryDivOp[FloatType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  133. implicit def binaryOpConv35bd (op: BinaryAMSOp[FloatType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  134. implicit def binaryOpConv36 (op: BinaryDivOp[FloatType, Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  135. implicit def binaryOpConv36 (op: BinaryAMSOp[FloatType, Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  136. implicit def binaryOpConv37 (op: BinaryDivOp[FloatType, Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  137. implicit def binaryOpConv37 (op: BinaryAMSOp[FloatType, Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  138. implicit def binaryOpConv38 (op: BinaryDivOp[FloatType, Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  139. implicit def binaryOpConv38 (op: BinaryAMSOp[FloatType, Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  140. implicit def binaryOpConv39 (op: BinaryDivOp[FloatType, Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  141. implicit def binaryOpConv39 (op: BinaryAMSOp[FloatType, Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  142. implicit def binaryOpConv4 (op: BinaryDivOp[ByteType, FloatType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  143. implicit def binaryOpConv4 (op: BinaryAMSOp[ByteType, FloatType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  144. implicit def binaryOpConv40 (op: BinaryDivOp[FloatType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  145. implicit def binaryOpConv40 (op: BinaryAMSOp[FloatType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  146. implicit def binaryOpConv40bd (op: BinaryDivOp[FloatType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  147. implicit def binaryOpConv40bd (op: BinaryAMSOp[FloatType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  148. implicit def binaryOpConv41 (op: BinaryDivOp[DoubleType, ByteType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  149. implicit def binaryOpConv41 (op: BinaryAMSOp[DoubleType, ByteType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  150. implicit def binaryOpConv42 (op: BinaryDivOp[DoubleType, IntType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  151. implicit def binaryOpConv42 (op: BinaryAMSOp[DoubleType, IntType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  152. implicit def binaryOpConv43 (op: BinaryDivOp[DoubleType, LongType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  153. implicit def binaryOpConv43 (op: BinaryAMSOp[DoubleType, LongType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  154. implicit def binaryOpConv44 (op: BinaryDivOp[DoubleType, FloatType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  155. implicit def binaryOpConv44 (op: BinaryAMSOp[DoubleType, FloatType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  156. implicit def binaryOpConv45 (op: BinaryDivOp[DoubleType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  157. implicit def binaryOpConv45 (op: BinaryAMSOp[DoubleType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  158. implicit def binaryOpConv45bd (op: BinaryDivOp[DoubleType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  159. implicit def binaryOpConv45bd (op: BinaryAMSOp[DoubleType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  160. implicit def binaryOpConv46 (op: BinaryDivOp[DoubleType, Option[ByteType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  161. implicit def binaryOpConv46 (op: BinaryAMSOp[DoubleType, Option[ByteType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  162. implicit def binaryOpConv47 (op: BinaryDivOp[DoubleType, Option[IntType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  163. implicit def binaryOpConv47 (op: BinaryAMSOp[DoubleType, Option[IntType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  164. implicit def binaryOpConv48 (op: BinaryDivOp[DoubleType, Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  165. implicit def binaryOpConv48 (op: BinaryAMSOp[DoubleType, Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  166. implicit def binaryOpConv49 (op: BinaryDivOp[DoubleType, Option[FloatType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  167. implicit def binaryOpConv49 (op: BinaryAMSOp[DoubleType, Option[FloatType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  168. implicit def binaryOpConv5 (op: BinaryDivOp[ByteType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  169. implicit def binaryOpConv5 (op: BinaryAMSOp[ByteType, DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  170. implicit def binaryOpConv50 (op: BinaryDivOp[DoubleType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  171. implicit def binaryOpConv50 (op: BinaryAMSOp[DoubleType, Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  172. implicit def binaryOpConv50bd (op: BinaryDivOp[DoubleType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  173. implicit def binaryOpConv50bd (op: BinaryAMSOp[DoubleType, Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  174. implicit def binaryOpConv51 (op: BinaryDivOp[Option[ByteType], ByteType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  175. implicit def binaryOpConv51 (op: BinaryAMSOp[Option[ByteType], ByteType]): NumericalTypeConversion[Option[ByteType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  176. implicit def binaryOpConv52 (op: BinaryDivOp[Option[ByteType], IntType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  177. implicit def binaryOpConv52 (op: BinaryAMSOp[Option[ByteType], IntType]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  178. implicit def binaryOpConv53 (op: BinaryDivOp[Option[ByteType], LongType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  179. implicit def binaryOpConv53 (op: BinaryAMSOp[Option[ByteType], LongType]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  180. implicit def binaryOpConv54 (op: BinaryDivOp[Option[ByteType], FloatType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  181. implicit def binaryOpConv54 (op: BinaryAMSOp[Option[ByteType], FloatType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  182. implicit def binaryOpConv55 (op: BinaryDivOp[Option[ByteType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  183. implicit def binaryOpConv55 (op: BinaryAMSOp[Option[ByteType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  184. implicit def binaryOpConv55bd (op: BinaryDivOp[Option[ByteType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  185. implicit def binaryOpConv55bd (op: BinaryAMSOp[Option[ByteType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  186. implicit def binaryOpConv56 (op: BinaryDivOp[Option[ByteType], Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  187. implicit def binaryOpConv56 (op: BinaryAMSOp[Option[ByteType], Option[ByteType]]): NumericalTypeConversion[Option[ByteType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  188. implicit def binaryOpConv57 (op: BinaryDivOp[Option[ByteType], Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  189. implicit def binaryOpConv57 (op: BinaryAMSOp[Option[ByteType], Option[IntType]]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  190. implicit def binaryOpConv58 (op: BinaryDivOp[Option[ByteType], Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  191. implicit def binaryOpConv58 (op: BinaryAMSOp[Option[ByteType], Option[LongType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  192. implicit def binaryOpConv59 (op: BinaryDivOp[Option[ByteType], Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  193. implicit def binaryOpConv59 (op: BinaryAMSOp[Option[ByteType], Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  194. implicit def binaryOpConv5bd (op: BinaryDivOp[ByteType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  195. implicit def binaryOpConv5bd (op: BinaryAMSOp[ByteType, BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  196. implicit def binaryOpConv6 (op: BinaryDivOp[ByteType, Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  197. implicit def binaryOpConv6 (op: BinaryAMSOp[ByteType, Option[ByteType]]): NumericalTypeConversion[Option[ByteType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  198. implicit def binaryOpConv60 (op: BinaryDivOp[Option[ByteType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  199. implicit def binaryOpConv60 (op: BinaryAMSOp[Option[ByteType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  200. implicit def binaryOpConv60bd (op: BinaryDivOp[Option[ByteType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  201. implicit def binaryOpConv60bd (op: BinaryAMSOp[Option[ByteType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  202. implicit def binaryOpConv61 (op: BinaryDivOp[Option[IntType], ByteType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  203. implicit def binaryOpConv61 (op: BinaryAMSOp[Option[IntType], ByteType]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  204. implicit def binaryOpConv62 (op: BinaryDivOp[Option[IntType], IntType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  205. implicit def binaryOpConv62 (op: BinaryAMSOp[Option[IntType], IntType]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  206. implicit def binaryOpConv63 (op: BinaryDivOp[Option[IntType], LongType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  207. implicit def binaryOpConv63 (op: BinaryAMSOp[Option[IntType], LongType]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  208. implicit def binaryOpConv64 (op: BinaryDivOp[Option[IntType], FloatType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  209. implicit def binaryOpConv64 (op: BinaryAMSOp[Option[IntType], FloatType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  210. implicit def binaryOpConv65 (op: BinaryDivOp[Option[IntType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  211. implicit def binaryOpConv65 (op: BinaryAMSOp[Option[IntType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  212. implicit def binaryOpConv65bd (op: BinaryDivOp[Option[IntType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  213. implicit def binaryOpConv65bd (op: BinaryAMSOp[Option[IntType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  214. implicit def binaryOpConv66 (op: BinaryDivOp[Option[IntType], Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  215. implicit def binaryOpConv66 (op: BinaryAMSOp[Option[IntType], Option[ByteType]]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  216. implicit def binaryOpConv67 (op: BinaryDivOp[Option[IntType], Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  217. implicit def binaryOpConv67 (op: BinaryAMSOp[Option[IntType], Option[IntType]]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  218. implicit def binaryOpConv68 (op: BinaryDivOp[Option[IntType], Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  219. implicit def binaryOpConv68 (op: BinaryAMSOp[Option[IntType], Option[LongType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  220. implicit def binaryOpConv69 (op: BinaryDivOp[Option[IntType], Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  221. implicit def binaryOpConv69 (op: BinaryAMSOp[Option[IntType], Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  222. implicit def binaryOpConv7 (op: BinaryDivOp[ByteType, Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  223. implicit def binaryOpConv7 (op: BinaryAMSOp[ByteType, Option[IntType]]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  224. implicit def binaryOpConv70 (op: BinaryDivOp[Option[IntType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  225. implicit def binaryOpConv70 (op: BinaryAMSOp[Option[IntType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  226. implicit def binaryOpConv70bd (op: BinaryDivOp[Option[IntType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  227. implicit def binaryOpConv70bd (op: BinaryAMSOp[Option[IntType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  228. implicit def binaryOpConv71 (op: BinaryDivOp[Option[LongType], ByteType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  229. implicit def binaryOpConv71 (op: BinaryAMSOp[Option[LongType], ByteType]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  230. implicit def binaryOpConv72 (op: BinaryDivOp[Option[LongType], IntType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  231. implicit def binaryOpConv72 (op: BinaryAMSOp[Option[LongType], IntType]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  232. implicit def binaryOpConv73 (op: BinaryDivOp[Option[LongType], LongType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  233. implicit def binaryOpConv73 (op: BinaryAMSOp[Option[LongType], LongType]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  234. implicit def binaryOpConv74 (op: BinaryDivOp[Option[LongType], FloatType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  235. implicit def binaryOpConv74 (op: BinaryAMSOp[Option[LongType], FloatType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  236. implicit def binaryOpConv75 (op: BinaryDivOp[Option[LongType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  237. implicit def binaryOpConv75 (op: BinaryAMSOp[Option[LongType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  238. implicit def binaryOpConv75bd (op: BinaryDivOp[Option[LongType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  239. implicit def binaryOpConv75bd (op: BinaryAMSOp[Option[LongType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  240. implicit def binaryOpConv76 (op: BinaryDivOp[Option[LongType], Option[ByteType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  241. implicit def binaryOpConv76 (op: BinaryAMSOp[Option[LongType], Option[ByteType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  242. implicit def binaryOpConv77 (op: BinaryDivOp[Option[LongType], Option[IntType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  243. implicit def binaryOpConv77 (op: BinaryAMSOp[Option[LongType], Option[IntType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  244. implicit def binaryOpConv78 (op: BinaryDivOp[Option[LongType], Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  245. implicit def binaryOpConv78 (op: BinaryAMSOp[Option[LongType], Option[LongType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  246. implicit def binaryOpConv79 (op: BinaryDivOp[Option[LongType], Option[FloatType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  247. implicit def binaryOpConv79 (op: BinaryAMSOp[Option[LongType], Option[FloatType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  248. implicit def binaryOpConv8 (op: BinaryDivOp[ByteType, Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  249. implicit def binaryOpConv8 (op: BinaryAMSOp[ByteType, Option[LongType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  250. implicit def binaryOpConv80 (op: BinaryDivOp[Option[LongType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  251. implicit def binaryOpConv80 (op: BinaryAMSOp[Option[LongType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  252. implicit def binaryOpConv80bd (op: BinaryDivOp[Option[LongType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  253. implicit def binaryOpConv80bd (op: BinaryAMSOp[Option[LongType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  254. implicit def binaryOpConv81 (op: BinaryDivOp[Option[FloatType], ByteType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  255. implicit def binaryOpConv81 (op: BinaryAMSOp[Option[FloatType], ByteType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  256. implicit def binaryOpConv82 (op: BinaryDivOp[Option[FloatType], IntType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  257. implicit def binaryOpConv82 (op: BinaryAMSOp[Option[FloatType], IntType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  258. implicit def binaryOpConv83 (op: BinaryDivOp[Option[FloatType], LongType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  259. implicit def binaryOpConv83 (op: BinaryAMSOp[Option[FloatType], LongType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  260. implicit def binaryOpConv84 (op: BinaryDivOp[Option[FloatType], FloatType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  261. implicit def binaryOpConv84 (op: BinaryAMSOp[Option[FloatType], FloatType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  262. implicit def binaryOpConv85 (op: BinaryDivOp[Option[FloatType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  263. implicit def binaryOpConv85 (op: BinaryAMSOp[Option[FloatType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  264. implicit def binaryOpConv85bd (op: BinaryDivOp[Option[FloatType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  265. implicit def binaryOpConv85bd (op: BinaryAMSOp[Option[FloatType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  266. implicit def binaryOpConv86 (op: BinaryDivOp[Option[FloatType], Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  267. implicit def binaryOpConv86 (op: BinaryAMSOp[Option[FloatType], Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  268. implicit def binaryOpConv87 (op: BinaryDivOp[Option[FloatType], Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  269. implicit def binaryOpConv87 (op: BinaryAMSOp[Option[FloatType], Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  270. implicit def binaryOpConv88 (op: BinaryDivOp[Option[FloatType], Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  271. implicit def binaryOpConv88 (op: BinaryAMSOp[Option[FloatType], Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  272. implicit def binaryOpConv89 (op: BinaryDivOp[Option[FloatType], Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  273. implicit def binaryOpConv89 (op: BinaryAMSOp[Option[FloatType], Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  274. implicit def binaryOpConv9 (op: BinaryDivOp[ByteType, Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  275. implicit def binaryOpConv9 (op: BinaryAMSOp[ByteType, Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  276. implicit def binaryOpConv90 (op: BinaryDivOp[Option[FloatType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  277. implicit def binaryOpConv90 (op: BinaryAMSOp[Option[FloatType], Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  278. implicit def binaryOpConv90bd (op: BinaryDivOp[Option[FloatType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  279. implicit def binaryOpConv90bd (op: BinaryAMSOp[Option[FloatType], Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  280. implicit def binaryOpConv91 (op: BinaryDivOp[Option[DoubleType], ByteType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  281. implicit def binaryOpConv91 (op: BinaryAMSOp[Option[DoubleType], ByteType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  282. implicit def binaryOpConv92 (op: BinaryDivOp[Option[DoubleType], IntType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  283. implicit def binaryOpConv92 (op: BinaryAMSOp[Option[DoubleType], IntType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  284. implicit def binaryOpConv93 (op: BinaryDivOp[Option[DoubleType], LongType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  285. implicit def binaryOpConv93 (op: BinaryAMSOp[Option[DoubleType], LongType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  286. implicit def binaryOpConv94 (op: BinaryDivOp[Option[DoubleType], FloatType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  287. implicit def binaryOpConv94 (op: BinaryAMSOp[Option[DoubleType], FloatType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  288. implicit def binaryOpConv95 (op: BinaryDivOp[Option[DoubleType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  289. implicit def binaryOpConv95 (op: BinaryAMSOp[Option[DoubleType], DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  290. implicit def binaryOpConv95bd (op: BinaryDivOp[Option[DoubleType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  291. implicit def binaryOpConv95bd (op: BinaryAMSOp[Option[DoubleType], BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  292. implicit def binaryOpConv96 (op: BinaryDivOp[Option[DoubleType], Option[ByteType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  293. implicit def binaryOpConv96 (op: BinaryAMSOp[Option[DoubleType], Option[ByteType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  294. implicit def binaryOpConv97 (op: BinaryDivOp[Option[DoubleType], Option[IntType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  295. implicit def binaryOpConv97 (op: BinaryAMSOp[Option[DoubleType], Option[IntType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  296. implicit def binaryOpConv98 (op: BinaryDivOp[Option[DoubleType], Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  297. implicit def binaryOpConv98 (op: BinaryAMSOp[Option[DoubleType], Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  298. implicit def binaryOpConv99 (op: BinaryDivOp[Option[DoubleType], Option[FloatType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  299. implicit def binaryOpConv99 (op: BinaryAMSOp[Option[DoubleType], Option[FloatType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  300. implicit def bool2ScalarBoolean (b: BooleanType): BooleanExpression[BooleanType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  301. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  302. def compositeKey [A1, A2, A3, A4, A5, A6, A7, A8, A9] (a1: A1, a2: A2, a3: A3, a4: A4, a5: A5, a6: A6, a7: A7, a8: A8, a9: A9): CompositeKey9[A1, A2, A3, A4, A5, A6, A7, A8, A9]

    Definition Classes
    QueryDsl
  303. def compositeKey [A1, A2, A3, A4, A5, A6, A7, A8] (a1: A1, a2: A2, a3: A3, a4: A4, a5: A5, a6: A6, a7: A7, a8: A8): CompositeKey8[A1, A2, A3, A4, A5, A6, A7, A8]

    Definition Classes
    QueryDsl
  304. def compositeKey [A1, A2, A3, A4, A5, A6, A7] (a1: A1, a2: A2, a3: A3, a4: A4, a5: A5, a6: A6, a7: A7): CompositeKey7[A1, A2, A3, A4, A5, A6, A7]

    Definition Classes
    QueryDsl
  305. def compositeKey [A1, A2, A3, A4, A5, A6] (a1: A1, a2: A2, a3: A3, a4: A4, a5: A5, a6: A6): CompositeKey6[A1, A2, A3, A4, A5, A6]

    Definition Classes
    QueryDsl
  306. def compositeKey [A1, A2, A3, A4, A5] (a1: A1, a2: A2, a3: A3, a4: A4, a5: A5): CompositeKey5[A1, A2, A3, A4, A5]

    Definition Classes
    QueryDsl
  307. def compositeKey [A1, A2, A3, A4] (a1: A1, a2: A2, a3: A3, a4: A4): CompositeKey4[A1, A2, A3, A4]

    Definition Classes
    QueryDsl
  308. def compositeKey [A1, A2, A3] (a1: A1, a2: A2, a3: A3): CompositeKey3[A1, A2, A3]

    Definition Classes
    QueryDsl
  309. def compositeKey [A1, A2] (a1: A1, a2: A2): CompositeKey2[A1, A2]

    Definition Classes
    QueryDsl
  310. def compute [T1, T2, T3, T4, T5, T6, T7] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4], e5: ⇒ TypedExpressionNode[T5], e6: ⇒ TypedExpressionNode[T6], e7: ⇒ TypedExpressionNode[T7]): ComputeStateStartOrWhereState[Product7[T1, T2, T3, T4, T5, T6, T7]]

  311. def compute [T1, T2, T3, T4, T5, T6] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4], e5: ⇒ TypedExpressionNode[T5], e6: ⇒ TypedExpressionNode[T6]): ComputeStateStartOrWhereState[Product6[T1, T2, T3, T4, T5, T6]]

  312. def compute [T1, T2, T3, T4, T5] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4], e5: ⇒ TypedExpressionNode[T5]): ComputeStateStartOrWhereState[Product5[T1, T2, T3, T4, T5]]

  313. def compute [T1, T2, T3, T4] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4]): ComputeStateStartOrWhereState[Product4[T1, T2, T3, T4]]

  314. def compute [T1, T2, T3] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3]): ComputeStateStartOrWhereState[Product3[T1, T2, T3]]

  315. def compute [T1, T2] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2]): ComputeStateStartOrWhereState[Product2[T1, T2]]

  316. def compute [T1] (e1: ⇒ TypedExpressionNode[T1]): ComputeStateStartOrWhereState[T1]

  317. def count (e: org.squeryl.dsl.ast.TypedExpressionNode[_]*): CountFunction

    Definition Classes
    SqlFunctions
  318. def count : CountFunction

    Definition Classes
    SqlFunctions
  319. def countDistinct (e: org.squeryl.dsl.ast.TypedExpressionNode[_]*): CountFunction

    Definition Classes
    SqlFunctions
  320. implicit def countQueryableToIntTypeQuery [R] (q: Queryable[R]): CountSubQueryableQuery

    Attributes
    implicit
    Definition Classes
    QueryDsl
  321. def createLeafNodeOfEnumExpressionOptionType [A] (e: Option[EnumerationValueType]): EnumExpression[Option[Value]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  322. def createLeafNodeOfEnumExpressionType [A] (e: EnumerationValueType): EnumExpression[Value]

    Definition Classes
    PrimitiveTypeModeDslFactory
  323. def createLeafNodeOfScalarBigDecimalOptionType (i: Option[BigDecimal]): NumericalExpression[Option[BigDecimalType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  324. def createLeafNodeOfScalarBigDecimalType (i: BigDecimal): NumericalExpression[BigDecimalType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  325. def createLeafNodeOfScalarBinaryOptionType (i: Option[BinaryType]): BinaryExpression[Option[BinaryType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  326. def createLeafNodeOfScalarBinaryType (i: BinaryType): BinaryExpression[BinaryType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  327. def createLeafNodeOfScalarBooleanOptionType (b: Option[BooleanType]): BooleanExpression[Option[BooleanType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  328. def createLeafNodeOfScalarBooleanType (i: Boolean): BooleanExpression[BooleanType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  329. def createLeafNodeOfScalarDateOptionType (b: Option[DateType]): DateExpression[Option[DateType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  330. def createLeafNodeOfScalarDateType (i: Date): DateExpression[DateType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  331. def createLeafNodeOfScalarDoubleOptionType (i: Option[Double]): NumericalExpression[Option[DoubleType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  332. def createLeafNodeOfScalarDoubleType (i: Double): NumericalExpression[DoubleType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  333. def createLeafNodeOfScalarFloatOptionType (i: Option[Float]): NumericalExpression[Option[FloatType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  334. def createLeafNodeOfScalarFloatType (i: Float): NumericalExpression[FloatType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  335. def createLeafNodeOfScalarIntOptionType (i: Option[IntType]): NumericalExpression[Option[IntType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  336. def createLeafNodeOfScalarIntType (i: IntType): NumericalExpression[IntType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  337. def createLeafNodeOfScalarLongOptionType (l: Option[LongType]): NumericalExpression[Option[LongType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  338. def createLeafNodeOfScalarLongType (i: Long): NumericalExpression[LongType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  339. def createLeafNodeOfScalarStringOptionType (s: Option[StringType]): StringExpression[Option[StringType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  340. def createLeafNodeOfScalarStringType (s: String): StringExpression[StringType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  341. def createLeafNodeOfScalarTimestampOptionType (d: Option[Timestamp]): DateExpression[Option[TimestampType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  342. def createLeafNodeOfScalarTimestampType (d: Timestamp): DateExpression[TimestampType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  343. def createLeafNodeOfScalarUuidOptionType (d: Option[UUID]): UuidExpression[Option[UuidType]]

    Definition Classes
    PrimitiveTypeModeDslFactory
  344. def createLeafNodeOfScalarUuidType (d: UUID): UuidExpression[UuidType]

    Definition Classes
    PrimitiveTypeModeDslFactory
  345. implicit def createOutMapperBigDecimalType : OutMapper[BigDecimalType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  346. implicit def createOutMapperBigDecimalTypeOption : OutMapper[Option[BigDecimalType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  347. implicit def createOutMapperBinaryType : OutMapper[BinaryType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  348. implicit def createOutMapperBinaryTypeOption : OutMapper[Option[BinaryType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  349. implicit def createOutMapperBooleanType : OutMapper[BooleanType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  350. implicit def createOutMapperBooleanTypeOption : OutMapper[Option[BooleanType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  351. implicit def createOutMapperByteType : OutMapper[ByteType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  352. implicit def createOutMapperByteTypeOption : OutMapper[Option[ByteType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  353. implicit def createOutMapperDateType : OutMapper[DateType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  354. implicit def createOutMapperDateTypeOption : OutMapper[Option[DateType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  355. implicit def createOutMapperDoubleType : OutMapper[DoubleType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  356. implicit def createOutMapperDoubleTypeOption : OutMapper[Option[DoubleType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  357. implicit def createOutMapperFloatType : OutMapper[FloatType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  358. implicit def createOutMapperFloatTypeOption : OutMapper[Option[FloatType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  359. implicit def createOutMapperIntType : OutMapper[IntType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  360. implicit def createOutMapperIntTypeOption : OutMapper[Option[IntType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  361. implicit def createOutMapperLongType : OutMapper[LongType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  362. implicit def createOutMapperLongTypeOption : OutMapper[Option[LongType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  363. implicit def createOutMapperStringType : OutMapper[StringType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  364. implicit def createOutMapperStringTypeOption : OutMapper[Option[StringType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  365. implicit def createOutMapperTimestampType : OutMapper[TimestampType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  366. implicit def createOutMapperTimestampTypeOption : OutMapper[Option[TimestampType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  367. implicit def createOutMapperUuidType : OutMapper[UuidType]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  368. implicit def createOutMapperUuidTypeOption : OutMapper[Option[UuidType]]

    Attributes
    protected implicit
    Definition Classes
    TypeArithmetic
  369. implicit def date2ScalarDate (b: DateType): DateExpression[DateType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  370. implicit def double2ScalarDouble (d: DoubleType): NumericalExpression[DoubleType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  371. implicit def e2concat1 [A1, A2] (e: ConcatOp[A1, A2]): StringTypeConversion[StringType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  372. implicit def e2concat2 [A1, A2] (e: ConcatOp[A1, Option[A2]]): StringTypeConversion[Option[StringType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  373. implicit def e2concat3 [A1, A2] (e: ConcatOp[Option[A1], A2]): StringTypeConversion[Option[StringType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  374. implicit def e2concat4 [A1, A2] (e: ConcatOp[Option[A1], Option[A2]]): StringTypeConversion[Option[StringType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  375. implicit def emulateSqlTyping1 [A] (e: NonNumericalExpression[Option[A]]): NonNumericalExpression[A]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  376. implicit def emulateSqlTyping2 [A] (e: NumericalExpression[Option[A]]): NumericalExpression[A]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  377. implicit def enum2EnumNode [A <: EnumerationValueType] (e: A): EnumExpression[A]

    Attributes
    implicit
    Definition Classes
    DslFactory
  378. implicit def enum2OptionEnumNode [A <: Option[EnumerationValueType]] (e: A): EnumExpression[Option[A]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  379. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  380. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  381. def exists [A] (query: Query[A]): ExistsExpression

    Definition Classes
    SqlFunctions
  382. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  383. implicit def float2ScalarFloat (d: FloatType): NumericalExpression[FloatType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  384. def from [T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R] (t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3], t4: Queryable[T4], t5: Queryable[T5], t6: Queryable[T6], t7: Queryable[T7], t8: Queryable[T8], t9: Queryable[T9], t10: Queryable[T10])(f: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  385. def from [T1, T2, T3, T4, T5, T6, T7, T8, T9, R] (t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3], t4: Queryable[T4], t5: Queryable[T5], t6: Queryable[T6], t7: Queryable[T7], t8: Queryable[T8], t9: Queryable[T9])(f: (T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  386. def from [T1, T2, T3, T4, T5, T6, T7, T8, R] (t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3], t4: Queryable[T4], t5: Queryable[T5], t6: Queryable[T6], t7: Queryable[T7], t8: Queryable[T8])(f: (T1, T2, T3, T4, T5, T6, T7, T8) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  387. def from [T1, T2, T3, T4, T5, T6, T7, R] (t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3], t4: Queryable[T4], t5: Queryable[T5], t6: Queryable[T6], t7: Queryable[T7])(f: (T1, T2, T3, T4, T5, T6, T7) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  388. def from [T1, T2, T3, T4, T5, T6, R] (t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3], t4: Queryable[T4], t5: Queryable[T5], t6: Queryable[T6])(f: (T1, T2, T3, T4, T5, T6) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  389. def from [T1, T2, T3, T4, T5, R] (t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3], t4: Queryable[T4], t5: Queryable[T5])(f: (T1, T2, T3, T4, T5) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  390. def from [T1, T2, T3, T4, R] (t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3], t4: Queryable[T4])(f: (T1, T2, T3, T4) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  391. def from [T1, T2, T3, R] (t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3])(f: (T1, T2, T3) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  392. def from [T1, T2, R] (t1: Queryable[T1], t2: Queryable[T2])(f: (T1, T2) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  393. def from [T1, R] (t1: Queryable[T1])(f: (T1) ⇒ QueryYield[R]): Query[R]

    Definition Classes
    FromSignatures
  394. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  395. def groupBy [T1, T2, T3, T4, T5, T6, T7, T8] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4], e5: ⇒ TypedExpressionNode[T5], e6: ⇒ TypedExpressionNode[T6], e7: ⇒ TypedExpressionNode[T7], e8: ⇒ TypedExpressionNode[T8]): GroupByState[Product8[T1, T2, T3, T4, T5, T6, T7, T8]]

    Definition Classes
    GroupBySignatures
  396. def groupBy [T1, T2, T3, T4, T5, T6, T7] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4], e5: ⇒ TypedExpressionNode[T5], e6: ⇒ TypedExpressionNode[T6], e7: ⇒ TypedExpressionNode[T7]): GroupByState[Product7[T1, T2, T3, T4, T5, T6, T7]]

    Definition Classes
    GroupBySignatures
  397. def groupBy [T1, T2, T3, T4, T5, T6] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4], e5: ⇒ TypedExpressionNode[T5], e6: ⇒ TypedExpressionNode[T6]): GroupByState[Product6[T1, T2, T3, T4, T5, T6]]

    Definition Classes
    GroupBySignatures
  398. def groupBy [T1, T2, T3, T4, T5] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4], e5: ⇒ TypedExpressionNode[T5]): GroupByState[Product5[T1, T2, T3, T4, T5]]

    Definition Classes
    GroupBySignatures
  399. def groupBy [T1, T2, T3, T4] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3], e4: ⇒ TypedExpressionNode[T4]): GroupByState[Product4[T1, T2, T3, T4]]

    Definition Classes
    GroupBySignatures
  400. def groupBy [T1, T2, T3] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2], e3: ⇒ TypedExpressionNode[T3]): GroupByState[Product3[T1, T2, T3]]

    Definition Classes
    GroupBySignatures
  401. def groupBy [T1, T2] (e1: ⇒ TypedExpressionNode[T1], e2: ⇒ TypedExpressionNode[T2]): GroupByState[Product2[T1, T2]]

    Definition Classes
    GroupBySignatures
  402. def groupBy [T1] (e1: ⇒ TypedExpressionNode[T1]): GroupByState[T1]

    Definition Classes
    GroupBySignatures
  403. implicit def groupOptionSingleColumnQuery2RightHandSideOfIn [A] (q: Query[Group[Option[A]]]): RightHandSideOfIn[A]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  404. implicit def groupSingleColumnQuery2RightHandSideOfIn [A] (q: Query[Group[A]]): RightHandSideOfIn[A]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  405. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  406. def inTransaction [A] (a: ⇒ A): A

    'inTransaction' will create a new transaction if none is in progress and commit it upon completion or rollback on exceptions.

    'inTransaction' will create a new transaction if none is in progress and commit it upon completion or rollback on exceptions. If a transaction already exists, it has no effect, the block will execute in the context of the existing transaction. The commit/rollback is handled in this case by the parent transaction block.

    Definition Classes
    QueryDsl
  407. implicit def int2ScalarInt (i: IntType): NumericalExpression[IntType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  408. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  409. def join [A, B1, B2, B3, B4, B5, B6, B7, C] (q: Queryable[A], q1: JoinedQueryable[B1], q2: JoinedQueryable[B2], q3: JoinedQueryable[B3], q4: JoinedQueryable[B4], q5: JoinedQueryable[B5], q6: JoinedQueryable[B6], q7: JoinedQueryable[B7])(f: (A, B1, B2, B3, B4, B5, B6, B7) ⇒ JoinQueryYield7[C]): Query[C]

    Definition Classes
    JoinSignatures
  410. def join [A, B1, B2, B3, B4, B5, B6, C] (q: Queryable[A], q1: JoinedQueryable[B1], q2: JoinedQueryable[B2], q3: JoinedQueryable[B3], q4: JoinedQueryable[B4], q5: JoinedQueryable[B5], q6: JoinedQueryable[B6])(f: (A, B1, B2, B3, B4, B5, B6) ⇒ JoinQueryYield6[C]): Query[C]

    Definition Classes
    JoinSignatures
  411. def join [A, B1, B2, B3, B4, B5, C] (q: Queryable[A], q1: JoinedQueryable[B1], q2: JoinedQueryable[B2], q3: JoinedQueryable[B3], q4: JoinedQueryable[B4], q5: JoinedQueryable[B5])(f: (A, B1, B2, B3, B4, B5) ⇒ JoinQueryYield5[C]): Query[C]

    Definition Classes
    JoinSignatures
  412. def join [A, B1, B2, B3, B4, C] (q: Queryable[A], q1: JoinedQueryable[B1], q2: JoinedQueryable[B2], q3: JoinedQueryable[B3], q4: JoinedQueryable[B4])(f: (A, B1, B2, B3, B4) ⇒ JoinQueryYield4[C]): Query[C]

    Definition Classes
    JoinSignatures
  413. def join [A, B1, B2, B3, C] (q: Queryable[A], q1: JoinedQueryable[B1], q2: JoinedQueryable[B2], q3: JoinedQueryable[B3])(f: (A, B1, B2, B3) ⇒ JoinQueryYield3[C]): Query[C]

    Definition Classes
    JoinSignatures
  414. def join [A, B1, B2, C] (q: Queryable[A], q1: JoinedQueryable[B1], q2: JoinedQueryable[B2])(f: (A, B1, B2) ⇒ JoinQueryYield2[C]): Query[C]

    Definition Classes
    JoinSignatures
  415. def join [A, B1, C] (q: Queryable[A], q1: JoinedQueryable[B1])(f: (A, B1) ⇒ JoinQueryYield1[C]): Query[C]

    Definition Classes
    JoinSignatures
  416. implicit def long2ScalarLong (l: LongType): NumericalExpression[LongType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  417. def lower [A] (s: StringExpression[A])(implicit m: OutMapper[A]): FunctionNode[A] with StringExpression[A]

    Definition Classes
    SqlFunctions
  418. def manyToManyRelation [L <: org.squeryl.KeyedEntity[_], R <: org.squeryl.KeyedEntity[_], A <: org.squeryl.KeyedEntity[_]] (l: Table[L], r: Table[R], nameOfMiddleTable: String): ManyToManyRelationBuilder[L, R]

    Definition Classes
    QueryDsl
  419. def manyToManyRelation [L <: org.squeryl.KeyedEntity[_], R <: org.squeryl.KeyedEntity[_], A <: org.squeryl.KeyedEntity[_]] (l: Table[L], r: Table[R]): ManyToManyRelationBuilder[L, R]

    Definition Classes
    QueryDsl
  420. def mapBigDecimal2BigDecimalType (d: BigDecimal): BigDecimal

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  421. def mapBinary2BinaryType (d: Array[Byte]): Array[Byte]

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  422. def mapBoolean2BooleanType (b: Boolean): Boolean

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  423. def mapByte2ByteType (i: Byte): Byte

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  424. def mapDate2DateType (b: Date): Date

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  425. def mapDouble2DoubleType (d: Double): Double

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  426. def mapFloat2FloatType (d: Float): Float

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  427. def mapInt2IntType (i: Int): Int

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  428. def mapLong2LongType (l: Long): Long

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  429. def mapObject2UuidType (u: AnyRef): UuidType

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  430. def mapString2StringType (s: String): String

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  431. def mapTimestamp2TimestampType (b: Timestamp): Timestamp

    Attributes
    protected
    Definition Classes
    PrimitiveTypeModeTypeArithmetic
  432. def max [A] (e: NonNumericalExpression[A]): UnaryAgregateLengthNeutralOp[A]

    Definition Classes
    SqlFunctions
  433. def max [A] (e: NumericalExpression[A]): UnaryAgregateLengthNeutralOp[A]

    Definition Classes
    SqlFunctions
  434. implicit def measureOptionSingleColumnQuery2RightHandSideOfIn [A] (q: Query[Measures[Option[A]]]): RightHandSideOfIn[A]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  435. implicit def measureSingleColumnQuery2RightHandSideOfIn [A] (q: Query[Measures[A]]): RightHandSideOfIn[A]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  436. def min [A] (e: NonNumericalExpression[A]): UnaryAgregateLengthNeutralOp[A]

    Definition Classes
    SqlFunctions
  437. def min [A] (e: NumericalExpression[A]): UnaryAgregateLengthNeutralOp[A]

    Definition Classes
    SqlFunctions
  438. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  439. implicit def nnCoalesce1 [A] (e: NonNumericalCoalesce[A, A]): NonNumericalTypeConversion[A]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  440. implicit def nnCoalesce2 [A] (e: NonNumericalCoalesce[A, Option[A]]): NonNumericalTypeConversion[Option[A]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  441. implicit def nnCoalesce3 [A] (e: NonNumericalCoalesce[Option[A], A]): NonNumericalTypeConversion[Option[A]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  442. implicit def nnCoalesce4 [A] (e: NonNumericalCoalesce[Option[A], Option[A]]): NonNumericalTypeConversion[Option[A]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  443. def not (b: LogicalBoolean): FunctionNode[Nothing] with LogicalBoolean

    Definition Classes
    SqlFunctions
  444. def notExists [A] (query: Query[A]): ExistsExpression

    Definition Classes
    SqlFunctions
  445. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  446. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  447. def nvl [A] (a: NonNumericalExpression[Option[A]], b: NonNumericalExpression[A]): NvlFunctionNonNumerical[Option[A], A]

    Definition Classes
    SqlFunctions
  448. def nvl [A, B] (a: NumericalExpression[Option[A]], b: NumericalExpression[B]): NvlFunctionNumerical[A, B]

    Definition Classes
    SqlFunctions
  449. implicit def nvl1 (e: NvlFunctionNonNumerical[Option[DateType], DateType]): DateTypeConversion[DateType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  450. implicit def nvl2 (e: NvlFunctionNonNumerical[Option[StringType], StringType]): StringTypeConversion[StringType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  451. implicit def nvl3 (e: NvlFunctionNonNumerical[Option[BooleanType], BooleanType]): BooleanTypeConversion[BooleanType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  452. def oneToManyRelation [O <: org.squeryl.KeyedEntity[_], M] (ot: Table[O], mt: Table[M]): OneToManyRelationBuilder[O, M]

    Definition Classes
    QueryDsl
  453. implicit def optionBigDecimal2ScalarBigDecimal (i: Option[BigDecimalType]): NumericalExpression[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  454. implicit def optionBoolean2ScalarBoolean (i: Option[BooleanType]): BooleanExpression[Option[BooleanType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  455. implicit def optionDate2ScalarDate (i: Option[DateType]): DateExpression[Option[DateType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  456. implicit def optionDouble2ScalarDouble (i: Option[DoubleType]): NumericalExpression[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  457. implicit def optionFloat2ScalarFloat (i: Option[FloatType]): NumericalExpression[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  458. implicit def optionInt2ScalarInt (i: Option[IntType]): NumericalExpression[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  459. implicit def optionLong2ScalarLong (i: Option[LongType]): NumericalExpression[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  460. implicit def optionString2ScalarString (i: Option[StringType]): StringExpression[Option[StringType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  461. implicit def optionUuid2ScalarUuid (u: Option[UuidType]): UuidExpression[Option[UuidType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  462. implicit def orderByArg2OrderByExpression (a: OrderByArg): OrderByExpression

    Attributes
    implicit
    Definition Classes
    DslFactory
  463. implicit def queryable2JoinPrecursor [A] (q: Queryable[A]): JoinPrecursor[A]

    Attributes
    implicit
    Definition Classes
    JoinSignatures
  464. implicit def queryable2OptionalQueryable [A] (q: Queryable[A]): OptionalQueryable[A]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  465. implicit def queryable2RightInnerJoinedQueryable [A] (q: Queryable[A]): InnerJoinedQueryable[A]

    Attributes
    implicit
    Definition Classes
    JoinSignatures
  466. def sDevPopulation [A] (e: NumericalExpression[A]): UnaryAgregateFloatOp[A]

    Definition Classes
    SqlFunctions
  467. def sDevSample [A] (e: NumericalExpression[A]): UnaryAgregateFloatOp[A]

    Definition Classes
    SqlFunctions
  468. implicit val sampleBigDecimal : BigDecimalType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  469. implicit val sampleBigDecimalO : Some[BigDecimalType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  470. implicit val sampleBinary : BinaryType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  471. implicit val sampleBinaryO : Some[BinaryType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  472. implicit val sampleBoolean : BooleanType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  473. implicit val sampleBooleanO : Some[BooleanType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  474. implicit val sampleByte : ByteType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  475. implicit val sampleByteO : Some[ByteType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  476. implicit val sampleDate : DateType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  477. implicit val sampleDateO : Some[DateType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  478. implicit val sampleDouble : DoubleType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  479. implicit val sampleDoubleO : Some[DoubleType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  480. implicit val sampleFloat : FloatType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  481. implicit val sampleFloatO : Some[FloatType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  482. implicit val sampleInt : IntType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  483. implicit val sampleIntO : Some[IntType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  484. implicit val sampleLong : LongType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  485. implicit val sampleLongO : Some[LongType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  486. implicit val sampleString : StringType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  487. implicit val sampleStringO : Some[StringType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  488. implicit def sampleTimestamp : TimestampType

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  489. implicit val sampleTimestampTypeO : Some[TimestampType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  490. implicit val sampleUuid : UUID

    Attributes
    protected implicit
    Definition Classes
    PrimitiveTypeModeFieldTypes
  491. implicit val sampleUuidO : Some[UuidType]

    Attributes
    protected implicit
    Definition Classes
    FieldTypes
  492. implicit def scalarQuery2Scalar [T] (sq: ScalarQuery[T]): T

    Attributes
    implicit
    Definition Classes
    QueryDsl
  493. def select [R] (yieldClosure: ⇒ R): SelectState[R]

    Definition Classes
    WhereState
  494. def set (updateAssignments: UpdateAssignment*)(implicit cond: =:=[Unconditioned, Conditioned]): UpdateStatement

    Definition Classes
    WhereState
  495. def setAll (updateAssignments: UpdateAssignment*)(implicit cond: =:=[Unconditioned, Unconditioned]): UpdateStatement

    Definition Classes
    WhereState
  496. implicit def singleColComputeQuery2Scalar [T] (cq: Query[Measures[T]]): T

    Attributes
    implicit
    Definition Classes
    QueryDsl
  497. implicit def singleColComputeQuery2ScalarQuery [T] (cq: Query[Measures[T]]): ScalarQuery[T]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  498. implicit def singleColumnQuery2RightHandSideOfIn [A] (q: Query[A]): RightHandSideOfIn[A]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  499. implicit def string2ScalarString (s: StringType): StringExpression[StringType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  500. def sum [A] (e: NumericalExpression[A]): UnaryAgregateLengthNeutralOp[A]

    Definition Classes
    SqlFunctions
  501. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  502. implicit def t2te [A1, A2] (t: (A1, A2)): CompositeKey2[A1, A2]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  503. implicit def t3te [A1, A2, A3] (t: (A1, A2, A3)): CompositeKey3[A1, A2, A3]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  504. implicit def t4te [A1, A2, A3, A4] (t: (A1, A2, A3, A4)): CompositeKey4[A1, A2, A3, A4]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  505. implicit def t5te [A1, A2, A3, A4, A5] (t: (A1, A2, A3, A4, A5)): CompositeKey5[A1, A2, A3, A4, A5]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  506. implicit def t6te [A1, A2, A3, A4, A5, A6] (t: (A1, A2, A3, A4, A5, A6)): CompositeKey6[A1, A2, A3, A4, A5, A6]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  507. implicit def t7te [A1, A2, A3, A4, A5, A6, A7] (t: (A1, A2, A3, A4, A5, A6, A7)): CompositeKey7[A1, A2, A3, A4, A5, A6, A7]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  508. implicit def t8te [A1, A2, A3, A4, A5, A6, A7, A8] (t: (A1, A2, A3, A4, A5, A6, A7, A8)): CompositeKey8[A1, A2, A3, A4, A5, A6, A7, A8]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  509. implicit def t9te [A1, A2, A3, A4, A5, A6, A7, A8, A9] (t: (A1, A2, A3, A4, A5, A6, A7, A8, A9)): CompositeKey9[A1, A2, A3, A4, A5, A6, A7, A8, A9]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  510. implicit def timestamp2ScalarTimestamp (ts: TimestampType): DateExpression[TimestampType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  511. implicit def timestamp2ScalarTimestampOptionNode (ts: Option[TimestampType]): DateExpression[Option[TimestampType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  512. def toString (): String

    Definition Classes
    AnyRef → Any
  513. def transaction [A] (a: ⇒ A): A

    'transaction' causes a new transaction to begin and commit after the block execution, or rollback if an exception occurs.

    'transaction' causes a new transaction to begin and commit after the block execution, or rollback if an exception occurs. Invoking a transaction always cause a new one to be created, even if called in the context of an existing transaction.

    Definition Classes
    QueryDsl
  514. implicit def traversableOfDate2ListDate (l: Traversable[DateType]): RightHandSideOfIn[DateType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  515. implicit def traversableOfDate2OptionListDate (l: Traversable[DateType]): RightHandSideOfIn[Option[DateType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  516. implicit def traversableOfNumericalExpressionList [A] (l: Traversable[A])(implicit arg0: (A) ⇒ org.squeryl.dsl.NumericalExpression[_]): RightHandSideOfIn[NumericalExpression[A]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  517. implicit def traversableOfString2ListString (l: Traversable[StringType]): RightHandSideOfIn[StringType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  518. implicit def traversableOfString2OptionListString (l: Traversable[StringType]): RightHandSideOfIn[Option[StringType]]

    Attributes
    implicit
    Definition Classes
    DslFactory
  519. implicit def typedExpression2OrderByArg [E] (e: E)(implicit arg0: (E) ⇒ org.squeryl.dsl.ast.TypedExpressionNode[_]): OrderByArg

    Attributes
    implicit
    Definition Classes
    DslFactory
  520. implicit def unaryOpConv1 (op: UnaryAgregateLengthNeutralOp[ByteType]): NumericalTypeConversion[Option[ByteType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  521. implicit def unaryOpConv1 (op: UnaryAgregateFloatOp[ByteType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  522. implicit def unaryOpConv1 (op: UnaryFloatOp[ByteType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  523. implicit def unaryOpConv10 (op: UnaryAgregateLengthNeutralOp[Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  524. implicit def unaryOpConv10 (op: UnaryAgregateFloatOp[Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  525. implicit def unaryOpConv10 (op: UnaryFloatOp[Option[DoubleType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  526. implicit def unaryOpConv10bd (op: UnaryAgregateLengthNeutralOp[Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  527. implicit def unaryOpConv11 (op: UnaryAgregateLengthNeutralOp[DateType]): DateTypeConversion[Option[DateType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  528. implicit def unaryOpConv11 (op: UnaryAgregateFloatOp[Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  529. implicit def unaryOpConv11 (op: UnaryFloatOp[Option[BigDecimalType]]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  530. implicit def unaryOpConv12 (op: UnaryAgregateLengthNeutralOp[Option[DateType]]): DateTypeConversion[Option[DateType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  531. implicit def unaryOpConv13 (op: UnaryAgregateLengthNeutralOp[StringType]): DateTypeConversion[Option[StringType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  532. implicit def unaryOpConv14 (op: UnaryAgregateLengthNeutralOp[Option[StringType]]): DateTypeConversion[Option[StringType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  533. implicit def unaryOpConv15 (op: UnaryAgregateLengthNeutralOp[BooleanType]): BooleanTypeConversion[Option[BooleanType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  534. implicit def unaryOpConv16 (op: UnaryAgregateLengthNeutralOp[Option[BooleanType]]): BooleanTypeConversion[Option[BooleanType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  535. implicit def unaryOpConv17 (op: UnaryAgregateLengthNeutralOp[TimestampType]): DateTypeConversion[Option[TimestampType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  536. implicit def unaryOpConv18 (op: UnaryAgregateLengthNeutralOp[Option[TimestampType]]): DateTypeConversion[Option[TimestampType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  537. implicit def unaryOpConv2 (op: UnaryAgregateLengthNeutralOp[IntType]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  538. implicit def unaryOpConv2 (op: UnaryAgregateFloatOp[IntType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  539. implicit def unaryOpConv2 (op: UnaryFloatOp[IntType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  540. implicit def unaryOpConv3 (op: UnaryAgregateLengthNeutralOp[LongType]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  541. implicit def unaryOpConv3 (op: UnaryAgregateFloatOp[LongType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  542. implicit def unaryOpConv3 (op: UnaryFloatOp[LongType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  543. implicit def unaryOpConv4 (op: UnaryAgregateLengthNeutralOp[FloatType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  544. implicit def unaryOpConv4 (op: UnaryAgregateFloatOp[FloatType]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  545. implicit def unaryOpConv4 (op: UnaryFloatOp[FloatType]): NumericalTypeConversion[FloatType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  546. implicit def unaryOpConv5 (op: UnaryAgregateLengthNeutralOp[DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  547. implicit def unaryOpConv5 (op: UnaryAgregateFloatOp[DoubleType]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  548. implicit def unaryOpConv5 (op: UnaryFloatOp[DoubleType]): NumericalTypeConversion[DoubleType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  549. implicit def unaryOpConv5bd (op: UnaryAgregateLengthNeutralOp[BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  550. implicit def unaryOpConv5bd (op: UnaryAgregateFloatOp[BigDecimalType]): NumericalTypeConversion[Option[BigDecimalType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  551. implicit def unaryOpConv5bd (op: UnaryFloatOp[BigDecimalType]): NumericalTypeConversion[BigDecimalType]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  552. implicit def unaryOpConv6 (op: UnaryAgregateLengthNeutralOp[Option[ByteType]]): NumericalTypeConversion[Option[ByteType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  553. implicit def unaryOpConv6 (op: UnaryAgregateFloatOp[Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  554. implicit def unaryOpConv6 (op: UnaryFloatOp[Option[ByteType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  555. implicit def unaryOpConv7 (op: UnaryAgregateLengthNeutralOp[Option[IntType]]): NumericalTypeConversion[Option[IntType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  556. implicit def unaryOpConv7 (op: UnaryAgregateFloatOp[Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  557. implicit def unaryOpConv7 (op: UnaryFloatOp[Option[IntType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  558. implicit def unaryOpConv8 (op: UnaryAgregateLengthNeutralOp[Option[LongType]]): NumericalTypeConversion[Option[LongType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  559. implicit def unaryOpConv8 (op: UnaryAgregateFloatOp[Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  560. implicit def unaryOpConv8 (op: UnaryFloatOp[Option[LongType]]): NumericalTypeConversion[Option[DoubleType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  561. implicit def unaryOpConv9 (op: UnaryAgregateLengthNeutralOp[Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  562. implicit def unaryOpConv9 (op: UnaryAgregateFloatOp[Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  563. implicit def unaryOpConv9 (op: UnaryFloatOp[Option[FloatType]]): NumericalTypeConversion[Option[FloatType]]

    Attributes
    implicit
    Definition Classes
    TypeArithmetic
  564. def update [A] (t: Table[A])(s: (A) ⇒ UpdateStatement): Int

    Definition Classes
    QueryDsl
  565. def upper [A] (s: StringExpression[A])(implicit m: OutMapper[A]): FunctionNode[A] with StringExpression[A]

    Definition Classes
    SqlFunctions
  566. def using [A] (session: Session)(a: ⇒ A): A

    Definition Classes
    QueryDsl
  567. implicit def uuid2ScalarUuid (u: UuidType): UuidExpression[UuidType]

    Attributes
    implicit
    Definition Classes
    DslFactory
  568. def varPopulation [A] (e: NumericalExpression[A]): UnaryAgregateFloatOp[A]

    Definition Classes
    SqlFunctions
  569. def varSample [A] (e: NumericalExpression[A]): UnaryAgregateFloatOp[A]

    Definition Classes
    SqlFunctions
  570. implicit def view2QueryAll [A] (v: View[A]): Query[A]

    Attributes
    implicit
    Definition Classes
    QueryDsl
  571. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  574. def where (b: ⇒ LogicalBoolean): WhereState[Conditioned]

    Definition Classes
    QueryDsl
  575. implicit def boolean2booleanFieldEqualsTrue (b: BooleanType): LogicalBoolean

    Attributes
    implicit
    Definition Classes
    QueryDsl
    Annotations
    @deprecated
    Deprecated

    please use aBooleanField === true

  576. def fullOuterJoin [A, B] (a: A, b: B, matchClause: ⇒ ExpressionNode): (Option[A], Option[B])

    Definition Classes
    QueryDsl
    Annotations
    @deprecated
    Deprecated

    use the new 'join' keyword instead http://squeryl.org/joins.html

  577. def leftOuterJoin [A] (a: A, matchClause: ⇒ ExpressionNode): Option[A]

    Definition Classes
    QueryDsl
    Annotations
    @deprecated
    Deprecated

    use the new 'join' keyword instead http://squeryl.org/joins.html

  578. implicit def optionBoolean2booleanFieldEqualsTrue (b: Option[BooleanType]): LogicalBoolean

    Attributes
    implicit
    Definition Classes
    QueryDsl
    Annotations
    @deprecated
    Deprecated

    please use aBooleanField === true

  579. def rightOuterJoin [A, B] (a: A, b: B, matchClause: ⇒ ExpressionNode): (Option[A], B)

    Definition Classes
    QueryDsl
    Annotations
    @deprecated
    Deprecated

    use the new 'join' keyword instead http://squeryl.org/joins.html

Inherited from PrimitiveTypeMode

Inherited from QueryDsl

Inherited from FromSignatures

Inherited from JoinSignatures

Inherited from QueryElements[Unconditioned]

Inherited from StartState

Inherited from WhereState[Unconditioned]

Inherited from ComputeMeasuresSignaturesFromStartOrWhereState

Inherited from GroupBySignatures

Inherited from DslFactory

Inherited from SqlFunctions

Inherited from TypeArithmetic

Inherited from FieldTypes

Inherited from AnyRef

Inherited from Any