object ExponentDesc
This object contains the concrete subtypes of ExponentDesc.
- Source
- NumericDesc.scala
- Since
4.0.0
- Alphabetic
- By Inheritance
- ExponentDesc
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
final
case class
Supported(compulsory: Boolean, chars: Set[Char], base: Int, positiveSign: PlusSignPresence) extends ExponentDesc with Product with Serializable
Exponents are supported, which may be compulsory.
Exponents are supported, which may be compulsory. The base of the exponent can vary, as can whether a positive (
+) sign is allowed before the exponent.- compulsory
is an exponent required for the literal (at a specific base) to be valid?
- chars
the set of possible characters that can start an exponent part of a literal.
- base
the base of the exponent: for instance
e3withbase = 10would represent multiplication by 1000.- positiveSign
are positive (
+) signs allowed, required, or illegal in front of the exponent?
- Since
4.0.0
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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- 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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
object
NoExponents extends ExponentDesc with Product with Serializable
Exponents are not supported.
Exponents are not supported.
- Since
4.0.0