object BinaryOperators
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- BinaryOperators
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class Bool(operator: BinaryBooleanOperator) extends BinaryOperators[Boolean, Boolean, Boolean] with Product with Serializable
- final case class Fractional[A](operator: BinaryFractionalOperator, fractional: numeric.Fractional[A]) extends BinaryOperators[A, A, A] with Product with Serializable
- final case class Integral[A](operator: BinaryIntegralOperator, integral: numeric.Integral[A]) extends BinaryOperators[A, A, A] with Product with Serializable
- final case class LessThanEqual[A](schema: Schema[A]) extends BinaryOperators[A, A, Boolean] with Product with Serializable
- final case class Numeric[A](operator: BinaryNumericOperator, numeric: numeric.Numeric[A]) extends BinaryOperators[A, A, A] with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[A](operator: BinaryIntegralOperator)(implicit bitwise: numeric.Integral[A]): Integral[A]
- def apply[A](operator: BinaryFractionalOperator)(implicit fractional: numeric.Fractional[A]): Fractional[A]
- def apply[A](operator: BinaryNumericOperator)(implicit numeric: numeric.Numeric[A]): Numeric[A]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def schema[In1, In2, Out]: Schema[BinaryOperators[In1, In2, Out]]
- lazy val schemaAny: Schema[BinaryOperators[Any, Any, Any]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- case object InstantToOffsetDateTime extends BinaryOperators[flow.Instant, ZoneOffset, flow.OffsetDateTime] with Product with Serializable
- case object RegexFindFirstIn extends BinaryOperators[Regex, String, Option[String]] with Product with Serializable
- case object RegexMatches extends BinaryOperators[Regex, String, Boolean] with Product with Serializable
- case object RegexReplaceAllIn extends BinaryOperators[Regex, (String, String), String] with Product with Serializable
- case object RegexReplaceFirstIn extends BinaryOperators[Regex, (String, String), String] with Product with Serializable
- case object RegexSplit extends BinaryOperators[Regex, String, List[String]] with Product with Serializable
- case object RegexUnapplySeq extends BinaryOperators[Regex, String, Option[List[String]]] with Product with Serializable