Packages

  • package root

    JSON (JavaScript Object Notation) is a lightweight data-interchange format.

    JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages,

    JSON has only types of string, number, boolean, object, array, and null. This library includes additional types such as date, int, long, double, counter, binary, UUID, ObjectId (as in BSON), etc.

    It is very easy to parse a JSON object:

    val doc =
      json"""
      {
        "store": {
          "book": [
            {
              "category": "reference",
              "author": "Nigel Rees",
              "title": "Sayings of the Century",
              "price": 8.95
            },
            {
              "category": "fiction",
              "author": "Evelyn Waugh",
              "title": "Sword of Honour",
              "price": 12.99
            },
            {
              "category": "fiction",
              "author": "Herman Melville",
              "title": "Moby Dick",
              "isbn": "0-553-21311-3",
              "price": 8.99
            },
            {
              "category": "fiction",
              "author": "J. R. R. Tolkien",
              "title": "The Lord of the Rings",
              "isbn": "0-395-19395-8",
              "price": 22.99
            }
          ],
          "bicycle": {
            "color": "red",
            "price": 19.95
          }
        }
      }
      """

    The interpolator json parse a string to JsObject. It is also okay to embed variable references directly in processed string literals.

    val x = 1
    json"""
      {
        "x": $x
      }
    """

    If the string is not a JSON object but any other valid JSON expression, one may use parseJson method to convert the string to a JsValue.

    "1".parseJson

    The json interpolator can only be applied to string literals. If you want to parse a string variable, the parseJson method can always be employed. If you know the string contains a JSON object, you may also use the method parseJsObject.

    val s = """{"x":1}"""
    s.parseJsObject

    To serialize a JSON value (of type JsValue) in compact mode, you can just use toString. To pretty print, use the method prettyPrint.

    doc.toString
    doc.prettyPrint

    With a JsObject or JsArray, you can refer to the individual elements with a variation of array syntax, like this:

    doc("store")("bicycle")("color")
    // Use symbol instead of string
    doc('store)('bicycle)('color)

    Note that we follow Scala's array access convention by () rather than [] in JavaScript.

    Besides, you can use the dot notation to access its fields/elements just like in JavaScript:

    doc.store.bicycle.color
    doc.store.book(0).author

    It is worth noting that we didn't define the type/schema of the document while Scala is a strong type language. In other words, we have both the type safe features of strong type language and the flexibility of dynamic language in this JSON library.

    If you try to access a non-exist field, 1JsUndefined is returned.

    scala> doc.book
    res11: unicorn.json.JsValue = undefined

    Although there are already several nice JSON libraries for Scala, the JSON objects are immutable by design, which is a natural choice for a functional language. For database, however, data mutation is necessary. Therefore, JsObject and JsArray are mutable data structures. You can set/add a field just like in JavaScript:

    json.store.bicycle.color = "green"

    To delete a field from JsObject, use remove method:

    doc.store.book(0) remove "price"

    It is same as setting it JsUndefined:

    doc.store.book(0).price = `JsUndefined`

    To delete an element from JsArray, the remove method will effectively remove it from the array. However, setting an element to undefined doesn't reduce the array size.

    // delete the first element and array size is smaller
    doc.store.book.remove(0)
    // set the first element to undefined but array size keeps same
    doc.store.book(0) = JsUndefined

    It is also possible to append an element or another array to JsArray:

    val a = JsArray(1, 2, 3, 4)
    a += 5
    
    a ++= JsArray(5, 6)

    Common iterative operations such as foreach, map, reduce can be applied to JsArray too.

    doc.store.book.asInstanceOf[JsArray].foreach { book =>
     println(book.price)
    }

    Because Scala is a static language, it is impossible to know doc.store.book is an array at compile time. So it is typed as generic JsValue, which is the parent type of specific JSON data types. Therefore, we use asInstanceOf[JsArray] to convert it to JsArray in order to use foreach.

    Definition Classes
    root
  • package smile
    Definition Classes
    root
  • package json

    Definition Classes
    smile
  • CompactPrinter
  • JsArray
  • JsBinary
  • JsBoolean
  • JsCounter
  • JsDate
  • JsDateTime
  • JsDecimal
  • JsDouble
  • JsInt
  • JsLong
  • JsNull
  • JsObject
  • JsObjectId
  • JsString
  • JsTime
  • JsTimestamp
  • JsUUID
  • JsUndefined
  • JsValue
  • JsValueOrdering
  • JsonHelper
  • JsonParser
  • JsonPrinter
  • JsonSerializer
  • ObjectId
  • ParserInput
  • PrettyPrinter

case class JsDecimal(value: BigDecimal) extends JsValue with Ordered[JsDecimal] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Ordered[JsDecimal], Comparable[JsDecimal], JsValue, Dynamic, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsDecimal
  2. Serializable
  3. Product
  4. Equals
  5. Ordered
  6. Comparable
  7. JsValue
  8. Dynamic
  9. AnyRef
  10. Any
Implicitly
  1. by json2ByteArray
  2. by json2String
  3. by json2Date
  4. by json2Timestamp
  5. by json2LocalDateTime
  6. by json2LocalTime
  7. by json2LocalDate
  8. by json2BigDecimal
  9. by json2Double
  10. by json2Long
  11. by json2Int
  12. by json2Boolean
  13. by json2BigDecimal
  14. by orderingToOrdered
  15. by any2stringadd
  16. by StringFormat
  17. by Ensuring
  18. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new JsDecimal(value: BigDecimal)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  4. def &&(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  5. def ->[B](y: B): (JsDecimal, B)
    Implicit
    This member is added by an implicit conversion from JsDecimal toArrowAssoc[JsDecimal] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def <(that: JsDecimal): Boolean
    Definition Classes
    Ordered
  7. def <=(that: JsDecimal): Boolean
    Definition Classes
    Ordered
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def >(that: JsDecimal): Boolean
    Definition Classes
    Ordered
  10. def >=(that: JsDecimal): Boolean
    Definition Classes
    Ordered
  11. def ^(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  12. def apply(range: Range): JsArray
    Definition Classes
    JsValue
  13. def apply(start: Int, end: Int, step: Int): JsArray
    Definition Classes
    JsValue
  14. def apply(start: Int, end: Int): JsArray
    Definition Classes
    JsValue
  15. def apply(index: Int): JsValue
    Definition Classes
    JsValue
  16. def apply(key: String): JsValue
    Definition Classes
    JsValue
  17. def applyDynamic(key: String): JsValue
    Definition Classes
    JsValue
  18. def asBoolean: Boolean
    Definition Classes
    JsDecimalJsValue
  19. def asDate: LocalDate
    Definition Classes
    JsValue
  20. def asDateTime: LocalDateTime
    Definition Classes
    JsValue
  21. def asDecimal: BigDecimal
    Definition Classes
    JsValue
  22. def asDouble: Double
    Definition Classes
    JsDecimalJsValue
  23. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  24. def asInt: Int
    Definition Classes
    JsDecimalJsValue
  25. def asLong: Long
    Definition Classes
    JsDecimalJsValue
  26. def asTime: LocalTime
    Definition Classes
    JsValue
  27. def asTimestamp: Timestamp
    Definition Classes
    JsValue
  28. def atDate(arg0: LocalDate): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  29. def atStartOfDay(arg0: ZoneId): ZonedDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  30. def atStartOfDay(): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  31. def atTime(arg0: OffsetTime): OffsetDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  32. def atTime(arg0: Int, arg1: Int, arg2: Int, arg3: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  33. def atTime(arg0: Int, arg1: Int, arg2: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  34. def atTime(arg0: Int, arg1: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  35. def atTime(arg0: LocalTime): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  36. def atZone(arg0: ZoneId): ZonedDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  37. def charAt(arg0: Int): Char
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  38. def chars(): IntStream
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    CharSequence
  39. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  40. def codePointAt(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  41. def codePointBefore(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  42. def codePointCount(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  43. def codePoints(): IntStream
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    CharSequence
  44. def compactPrint: String
    Definition Classes
    JsValue
  45. def compare(that: JsDecimal): Int
    Definition Classes
    JsDecimal → Ordered
  46. def compareTo(that: JsDecimal): Int
    Definition Classes
    Ordered → Comparable
  47. def compareToIgnoreCase(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  48. def concat(arg0: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  49. def contains(arg0: CharSequence): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  50. def contentEquals(arg0: CharSequence): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  51. def contentEquals(arg0: StringBuffer): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  52. def endsWith(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  53. def ensuring(cond: (JsDecimal) => Boolean, msg: => Any): JsDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toEnsuring[JsDecimal] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  54. def ensuring(cond: (JsDecimal) => Boolean): JsDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toEnsuring[JsDecimal] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  55. def ensuring(cond: Boolean, msg: => Any): JsDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toEnsuring[JsDecimal] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  56. def ensuring(cond: Boolean): JsDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toEnsuring[JsDecimal] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  57. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  58. def equals(o: Any): Boolean
    Definition Classes
    JsDecimal → Equals → AnyRef → Any
  59. def equalsIgnoreCase(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  60. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  61. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toStringFormat[JsDecimal] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  62. def get(key: String): Option[JsValue]
    Definition Classes
    JsValue
  63. def getBytes(): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  64. def getBytes(arg0: Charset): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  65. def getBytes(arg0: String): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
    Annotations
    @throws(classOf[java.io.UnsupportedEncodingException])
  66. def getChars(arg0: Int, arg1: Int, arg2: Array[Char], arg3: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  67. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  68. def getEra(): Era
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  69. def getNanos(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  70. def indexOf(arg0: String, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  71. def indexOf(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  72. def indexOf(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  73. def indexOf(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  74. def intern(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
    Annotations
    @native()
  75. def isAfter(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  76. def isAfter(arg0: LocalTime): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  77. def isAfter(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  78. def isBefore(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  79. def isBefore(arg0: LocalTime): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  80. def isBefore(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  81. def isEmpty(): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  82. def isEqual(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  83. def isEqual(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  84. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  85. def isLeapYear(): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  86. def lastIndexOf(arg0: String, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  87. def lastIndexOf(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  88. def lastIndexOf(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  89. def lastIndexOf(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  90. def length: Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toArray[Byte] performed by method json2ByteArray in smile.json.
    Definition Classes
    Array
  91. def length(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  92. def lengthOfMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  93. def lengthOfYear(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  94. def matches(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  95. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  96. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  97. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  98. def offsetByCodePoints(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  99. def prettyPrint: String
    Definition Classes
    JsValue
  100. def productElementNames: Iterator[String]
    Definition Classes
    Product
  101. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → TemporalAccessor
  102. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime → TemporalAccessor
  103. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate → TemporalAccessor
  104. def regionMatches(arg0: Boolean, arg1: Int, arg2: String, arg3: Int, arg4: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  105. def regionMatches(arg0: Int, arg1: String, arg2: Int, arg3: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  106. def remove(index: Int): JsValue
    Definition Classes
    JsValue
  107. def remove(key: String): Option[JsValue]
    Definition Classes
    JsValue
  108. def replace(arg0: CharSequence, arg1: CharSequence): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  109. def replace(arg0: Char, arg1: Char): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  110. def replaceAll(arg0: String, arg1: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  111. def replaceFirst(arg0: String, arg1: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  112. def selectDynamic(key: String): JsValue
    Definition Classes
    JsValue
  113. def setNanos(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  114. def split(arg0: String): Array[String]
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  115. def split(arg0: String, arg1: Int): Array[String]
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  116. def startsWith(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  117. def startsWith(arg0: String, arg1: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  118. def subSequence(arg0: Int, arg1: Int): CharSequence
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  119. def substring(arg0: Int, arg1: Int): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  120. def substring(arg0: Int): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  121. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  122. def toCharArray(): Array[Char]
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  123. def toEpochDay(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  124. def toEpochSecond(arg0: ZoneOffset): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    ChronoLocalDateTime
  125. def toInstant(arg0: ZoneOffset): Instant
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    ChronoLocalDateTime
  126. def toLocalDate(): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  127. def toLocalDateTime(): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  128. def toLocalTime(): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  129. def toLowerCase(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  130. def toLowerCase(arg0: Locale): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  131. def toNanoOfDay(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  132. def toSecondOfDay(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  133. def toString(): String
    Definition Classes
    JsDecimalJsValue → AnyRef → Any
  134. def toUpperCase(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  135. def toUpperCase(arg0: Locale): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  136. def trim(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
  137. def unary_!: Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  138. def until(arg0: ChronoLocalDate): Period
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  139. def update(index: Int, value: JsValue): JsValue
    Definition Classes
    JsValue
  140. def update(key: String, value: JsValue): JsValue
    Definition Classes
    JsValue
  141. def updateDynamic(index: Int)(value: JsValue): JsValue
    Definition Classes
    JsValue
  142. def updateDynamic(key: String)(value: JsValue): JsValue
    Definition Classes
    JsValue
  143. val value: BigDecimal
  144. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  145. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  146. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  147. def |(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  148. def ||(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean

Shadowed Implicit Value Members

  1. def !=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).!=(x)
    Definition Classes
    Double
  2. def !=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).!=(x)
    Definition Classes
    Double
  3. def !=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).!=(x)
    Definition Classes
    Double
  4. def !=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).!=(x)
    Definition Classes
    Double
  5. def !=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).!=(x)
    Definition Classes
    Double
  6. def !=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).!=(x)
    Definition Classes
    Double
  7. def !=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).!=(x)
    Definition Classes
    Double
  8. def !=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).!=(x)
    Definition Classes
    Long
  9. def !=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).!=(x)
    Definition Classes
    Long
  10. def !=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).!=(x)
    Definition Classes
    Long
  11. def !=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).!=(x)
    Definition Classes
    Long
  12. def !=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).!=(x)
    Definition Classes
    Long
  13. def !=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).!=(x)
    Definition Classes
    Long
  14. def !=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).!=(x)
    Definition Classes
    Long
  15. def !=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).!=(x)
    Definition Classes
    Int
  16. def !=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).!=(x)
    Definition Classes
    Int
  17. def !=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).!=(x)
    Definition Classes
    Int
  18. def !=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).!=(x)
    Definition Classes
    Int
  19. def !=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).!=(x)
    Definition Classes
    Int
  20. def !=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).!=(x)
    Definition Classes
    Int
  21. def !=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).!=(x)
    Definition Classes
    Int
  22. def !=(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBoolean performed by method json2Boolean in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Boolean).!=(x)
    Definition Classes
    Boolean
  23. def %(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).%(x)
    Definition Classes
    Double
  24. def %(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).%(x)
    Definition Classes
    Double
  25. def %(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).%(x)
    Definition Classes
    Double
  26. def %(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).%(x)
    Definition Classes
    Double
  27. def %(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).%(x)
    Definition Classes
    Double
  28. def %(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).%(x)
    Definition Classes
    Double
  29. def %(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).%(x)
    Definition Classes
    Double
  30. def %(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).%(x)
    Definition Classes
    Long
  31. def %(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).%(x)
    Definition Classes
    Long
  32. def %(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).%(x)
    Definition Classes
    Long
  33. def %(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).%(x)
    Definition Classes
    Long
  34. def %(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).%(x)
    Definition Classes
    Long
  35. def %(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).%(x)
    Definition Classes
    Long
  36. def %(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).%(x)
    Definition Classes
    Long
  37. def %(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).%(x)
    Definition Classes
    Int
  38. def %(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).%(x)
    Definition Classes
    Int
  39. def %(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).%(x)
    Definition Classes
    Int
  40. def %(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).%(x)
    Definition Classes
    Int
  41. def %(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).%(x)
    Definition Classes
    Int
  42. def %(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).%(x)
    Definition Classes
    Int
  43. def %(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).%(x)
    Definition Classes
    Int
  44. def &(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).&(x)
    Definition Classes
    Long
  45. def &(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).&(x)
    Definition Classes
    Long
  46. def &(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).&(x)
    Definition Classes
    Long
  47. def &(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).&(x)
    Definition Classes
    Long
  48. def &(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).&(x)
    Definition Classes
    Long
  49. def &(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).&(x)
    Definition Classes
    Int
  50. def &(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).&(x)
    Definition Classes
    Int
  51. def &(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).&(x)
    Definition Classes
    Int
  52. def &(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).&(x)
    Definition Classes
    Int
  53. def &(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).&(x)
    Definition Classes
    Int
  54. def *(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).*(x)
    Definition Classes
    Double
  55. def *(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).*(x)
    Definition Classes
    Double
  56. def *(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).*(x)
    Definition Classes
    Double
  57. def *(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).*(x)
    Definition Classes
    Double
  58. def *(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).*(x)
    Definition Classes
    Double
  59. def *(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).*(x)
    Definition Classes
    Double
  60. def *(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).*(x)
    Definition Classes
    Double
  61. def *(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).*(x)
    Definition Classes
    Long
  62. def *(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).*(x)
    Definition Classes
    Long
  63. def *(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).*(x)
    Definition Classes
    Long
  64. def *(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).*(x)
    Definition Classes
    Long
  65. def *(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).*(x)
    Definition Classes
    Long
  66. def *(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).*(x)
    Definition Classes
    Long
  67. def *(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).*(x)
    Definition Classes
    Long
  68. def *(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).*(x)
    Definition Classes
    Int
  69. def *(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).*(x)
    Definition Classes
    Int
  70. def *(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).*(x)
    Definition Classes
    Int
  71. def *(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).*(x)
    Definition Classes
    Int
  72. def *(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).*(x)
    Definition Classes
    Int
  73. def *(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).*(x)
    Definition Classes
    Int
  74. def *(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).*(x)
    Definition Classes
    Int
  75. final def +(arg0: Any): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: String).+(arg0)
    Definition Classes
    String
  76. def +(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).+(x)
    Definition Classes
    Double
  77. def +(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).+(x)
    Definition Classes
    Double
  78. def +(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).+(x)
    Definition Classes
    Double
  79. def +(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).+(x)
    Definition Classes
    Double
  80. def +(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).+(x)
    Definition Classes
    Double
  81. def +(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).+(x)
    Definition Classes
    Double
  82. def +(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).+(x)
    Definition Classes
    Double
  83. def +(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).+(x)
    Definition Classes
    Long
  84. def +(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).+(x)
    Definition Classes
    Long
  85. def +(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).+(x)
    Definition Classes
    Long
  86. def +(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).+(x)
    Definition Classes
    Long
  87. def +(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).+(x)
    Definition Classes
    Long
  88. def +(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).+(x)
    Definition Classes
    Long
  89. def +(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).+(x)
    Definition Classes
    Long
  90. def +(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).+(x)
    Definition Classes
    Int
  91. def +(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).+(x)
    Definition Classes
    Int
  92. def +(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).+(x)
    Definition Classes
    Int
  93. def +(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).+(x)
    Definition Classes
    Int
  94. def +(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).+(x)
    Definition Classes
    Int
  95. def +(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).+(x)
    Definition Classes
    Int
  96. def +(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).+(x)
    Definition Classes
    Int
  97. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toany2stringadd[JsDecimal] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: any2stringadd[JsDecimal]).+(other)
    Definition Classes
    any2stringadd
  98. def -(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).-(x)
    Definition Classes
    Double
  99. def -(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).-(x)
    Definition Classes
    Double
  100. def -(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).-(x)
    Definition Classes
    Double
  101. def -(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).-(x)
    Definition Classes
    Double
  102. def -(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).-(x)
    Definition Classes
    Double
  103. def -(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).-(x)
    Definition Classes
    Double
  104. def -(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).-(x)
    Definition Classes
    Double
  105. def -(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).-(x)
    Definition Classes
    Long
  106. def -(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).-(x)
    Definition Classes
    Long
  107. def -(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).-(x)
    Definition Classes
    Long
  108. def -(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).-(x)
    Definition Classes
    Long
  109. def -(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).-(x)
    Definition Classes
    Long
  110. def -(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).-(x)
    Definition Classes
    Long
  111. def -(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).-(x)
    Definition Classes
    Long
  112. def -(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).-(x)
    Definition Classes
    Int
  113. def -(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).-(x)
    Definition Classes
    Int
  114. def -(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).-(x)
    Definition Classes
    Int
  115. def -(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).-(x)
    Definition Classes
    Int
  116. def -(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).-(x)
    Definition Classes
    Int
  117. def -(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).-(x)
    Definition Classes
    Int
  118. def -(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).-(x)
    Definition Classes
    Int
  119. def /(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double)./(x)
    Definition Classes
    Double
  120. def /(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double)./(x)
    Definition Classes
    Double
  121. def /(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double)./(x)
    Definition Classes
    Double
  122. def /(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double)./(x)
    Definition Classes
    Double
  123. def /(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double)./(x)
    Definition Classes
    Double
  124. def /(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double)./(x)
    Definition Classes
    Double
  125. def /(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double)./(x)
    Definition Classes
    Double
  126. def /(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long)./(x)
    Definition Classes
    Long
  127. def /(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long)./(x)
    Definition Classes
    Long
  128. def /(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long)./(x)
    Definition Classes
    Long
  129. def /(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long)./(x)
    Definition Classes
    Long
  130. def /(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long)./(x)
    Definition Classes
    Long
  131. def /(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long)./(x)
    Definition Classes
    Long
  132. def /(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long)./(x)
    Definition Classes
    Long
  133. def /(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int)./(x)
    Definition Classes
    Int
  134. def /(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int)./(x)
    Definition Classes
    Int
  135. def /(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int)./(x)
    Definition Classes
    Int
  136. def /(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int)./(x)
    Definition Classes
    Int
  137. def /(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int)./(x)
    Definition Classes
    Int
  138. def /(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int)./(x)
    Definition Classes
    Int
  139. def /(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int)./(x)
    Definition Classes
    Int
  140. def <(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<(x)
    Definition Classes
    Double
  141. def <(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<(x)
    Definition Classes
    Double
  142. def <(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<(x)
    Definition Classes
    Double
  143. def <(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<(x)
    Definition Classes
    Double
  144. def <(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<(x)
    Definition Classes
    Double
  145. def <(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<(x)
    Definition Classes
    Double
  146. def <(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<(x)
    Definition Classes
    Double
  147. def <(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<(x)
    Definition Classes
    Long
  148. def <(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<(x)
    Definition Classes
    Long
  149. def <(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<(x)
    Definition Classes
    Long
  150. def <(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<(x)
    Definition Classes
    Long
  151. def <(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<(x)
    Definition Classes
    Long
  152. def <(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<(x)
    Definition Classes
    Long
  153. def <(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<(x)
    Definition Classes
    Long
  154. def <(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<(x)
    Definition Classes
    Int
  155. def <(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<(x)
    Definition Classes
    Int
  156. def <(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<(x)
    Definition Classes
    Int
  157. def <(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<(x)
    Definition Classes
    Int
  158. def <(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<(x)
    Definition Classes
    Int
  159. def <(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<(x)
    Definition Classes
    Int
  160. def <(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<(x)
    Definition Classes
    Int
  161. def <(that: JsDecimal): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).<(that)
    Definition Classes
    Ordered
  162. def <<(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<<(x)
    Definition Classes
    Long
  163. def <<(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<<(x)
    Definition Classes
    Long
  164. def <<(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<<(x)
    Definition Classes
    Int
  165. def <=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<=(x)
    Definition Classes
    Double
  166. def <=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<=(x)
    Definition Classes
    Double
  167. def <=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<=(x)
    Definition Classes
    Double
  168. def <=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<=(x)
    Definition Classes
    Double
  169. def <=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<=(x)
    Definition Classes
    Double
  170. def <=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<=(x)
    Definition Classes
    Double
  171. def <=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).<=(x)
    Definition Classes
    Double
  172. def <=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<=(x)
    Definition Classes
    Long
  173. def <=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<=(x)
    Definition Classes
    Long
  174. def <=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<=(x)
    Definition Classes
    Long
  175. def <=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<=(x)
    Definition Classes
    Long
  176. def <=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<=(x)
    Definition Classes
    Long
  177. def <=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<=(x)
    Definition Classes
    Long
  178. def <=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).<=(x)
    Definition Classes
    Long
  179. def <=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<=(x)
    Definition Classes
    Int
  180. def <=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<=(x)
    Definition Classes
    Int
  181. def <=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<=(x)
    Definition Classes
    Int
  182. def <=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<=(x)
    Definition Classes
    Int
  183. def <=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<=(x)
    Definition Classes
    Int
  184. def <=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<=(x)
    Definition Classes
    Int
  185. def <=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<=(x)
    Definition Classes
    Int
  186. def <=(that: JsDecimal): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).<=(that)
    Definition Classes
    Ordered
  187. def ==(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).==(x)
    Definition Classes
    Double
  188. def ==(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).==(x)
    Definition Classes
    Double
  189. def ==(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).==(x)
    Definition Classes
    Double
  190. def ==(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).==(x)
    Definition Classes
    Double
  191. def ==(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).==(x)
    Definition Classes
    Double
  192. def ==(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).==(x)
    Definition Classes
    Double
  193. def ==(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).==(x)
    Definition Classes
    Double
  194. def ==(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).==(x)
    Definition Classes
    Long
  195. def ==(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).==(x)
    Definition Classes
    Long
  196. def ==(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).==(x)
    Definition Classes
    Long
  197. def ==(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).==(x)
    Definition Classes
    Long
  198. def ==(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).==(x)
    Definition Classes
    Long
  199. def ==(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).==(x)
    Definition Classes
    Long
  200. def ==(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).==(x)
    Definition Classes
    Long
  201. def ==(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).==(x)
    Definition Classes
    Int
  202. def ==(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).==(x)
    Definition Classes
    Int
  203. def ==(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).==(x)
    Definition Classes
    Int
  204. def ==(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).==(x)
    Definition Classes
    Int
  205. def ==(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).==(x)
    Definition Classes
    Int
  206. def ==(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).==(x)
    Definition Classes
    Int
  207. def ==(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).==(x)
    Definition Classes
    Int
  208. def ==(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBoolean performed by method json2Boolean in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Boolean).==(x)
    Definition Classes
    Boolean
  209. def >(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>(x)
    Definition Classes
    Double
  210. def >(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>(x)
    Definition Classes
    Double
  211. def >(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>(x)
    Definition Classes
    Double
  212. def >(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>(x)
    Definition Classes
    Double
  213. def >(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>(x)
    Definition Classes
    Double
  214. def >(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>(x)
    Definition Classes
    Double
  215. def >(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>(x)
    Definition Classes
    Double
  216. def >(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>(x)
    Definition Classes
    Long
  217. def >(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>(x)
    Definition Classes
    Long
  218. def >(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>(x)
    Definition Classes
    Long
  219. def >(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>(x)
    Definition Classes
    Long
  220. def >(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>(x)
    Definition Classes
    Long
  221. def >(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>(x)
    Definition Classes
    Long
  222. def >(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>(x)
    Definition Classes
    Long
  223. def >(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>(x)
    Definition Classes
    Int
  224. def >(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>(x)
    Definition Classes
    Int
  225. def >(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>(x)
    Definition Classes
    Int
  226. def >(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>(x)
    Definition Classes
    Int
  227. def >(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>(x)
    Definition Classes
    Int
  228. def >(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>(x)
    Definition Classes
    Int
  229. def >(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>(x)
    Definition Classes
    Int
  230. def >(that: JsDecimal): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).>(that)
    Definition Classes
    Ordered
  231. def >=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>=(x)
    Definition Classes
    Double
  232. def >=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>=(x)
    Definition Classes
    Double
  233. def >=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>=(x)
    Definition Classes
    Double
  234. def >=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>=(x)
    Definition Classes
    Double
  235. def >=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>=(x)
    Definition Classes
    Double
  236. def >=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>=(x)
    Definition Classes
    Double
  237. def >=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Double).>=(x)
    Definition Classes
    Double
  238. def >=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>=(x)
    Definition Classes
    Long
  239. def >=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>=(x)
    Definition Classes
    Long
  240. def >=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>=(x)
    Definition Classes
    Long
  241. def >=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>=(x)
    Definition Classes
    Long
  242. def >=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>=(x)
    Definition Classes
    Long
  243. def >=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>=(x)
    Definition Classes
    Long
  244. def >=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>=(x)
    Definition Classes
    Long
  245. def >=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>=(x)
    Definition Classes
    Int
  246. def >=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>=(x)
    Definition Classes
    Int
  247. def >=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>=(x)
    Definition Classes
    Int
  248. def >=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>=(x)
    Definition Classes
    Int
  249. def >=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>=(x)
    Definition Classes
    Int
  250. def >=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>=(x)
    Definition Classes
    Int
  251. def >=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>=(x)
    Definition Classes
    Int
  252. def >=(that: JsDecimal): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).>=(that)
    Definition Classes
    Ordered
  253. def >>(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>>(x)
    Definition Classes
    Long
  254. def >>(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>>(x)
    Definition Classes
    Long
  255. def >>(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>>(x)
    Definition Classes
    Int
  256. def >>>(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>>>(x)
    Definition Classes
    Long
  257. def >>>(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).>>>(x)
    Definition Classes
    Long
  258. def >>>(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>>>(x)
    Definition Classes
    Int
  259. def ^(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).^(x)
    Definition Classes
    Long
  260. def ^(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).^(x)
    Definition Classes
    Long
  261. def ^(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).^(x)
    Definition Classes
    Long
  262. def ^(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).^(x)
    Definition Classes
    Long
  263. def ^(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).^(x)
    Definition Classes
    Long
  264. def ^(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).^(x)
    Definition Classes
    Int
  265. def ^(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).^(x)
    Definition Classes
    Int
  266. def ^(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).^(x)
    Definition Classes
    Int
  267. def ^(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).^(x)
    Definition Classes
    Int
  268. def ^(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).^(x)
    Definition Classes
    Int
  269. def abs(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).abs(arg0)
    Definition Classes
    BigDecimal
  270. def abs(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).abs()
    Definition Classes
    BigDecimal
  271. def abs(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).abs(arg0)
    Definition Classes
    BigDecimal
  272. def abs(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).abs()
    Definition Classes
    BigDecimal
  273. def add(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).add(arg0, arg1)
    Definition Classes
    BigDecimal
  274. def add(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).add(arg0)
    Definition Classes
    BigDecimal
  275. def add(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).add(arg0, arg1)
    Definition Classes
    BigDecimal
  276. def add(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).add(arg0)
    Definition Classes
    BigDecimal
  277. def adjustInto(arg0: Temporal): Temporal
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).adjustInto(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → TemporalAdjuster
  278. def adjustInto(arg0: Temporal): Temporal
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).adjustInto(arg0)
    Definition Classes
    LocalTime → TemporalAdjuster
  279. def adjustInto(arg0: Temporal): Temporal
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).adjustInto(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → TemporalAdjuster
  280. def after(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).after(arg0)
    Definition Classes
    Date
  281. def after(arg0: Timestamp): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).after(arg0)
    Definition Classes
    Timestamp
  282. def after(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).after(arg0)
    Definition Classes
    Date
  283. def apply(i: Int): Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toArray[Byte] performed by method json2ByteArray in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Array[Byte]).apply(i)
    Definition Classes
    Array
  284. def atOffset(arg0: ZoneOffset): OffsetDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).atOffset(arg0)
    Definition Classes
    LocalDateTime
  285. def atOffset(arg0: ZoneOffset): OffsetTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).atOffset(arg0)
    Definition Classes
    LocalTime
  286. def before(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).before(arg0)
    Definition Classes
    Date
  287. def before(arg0: Timestamp): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).before(arg0)
    Definition Classes
    Timestamp
  288. def before(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).before(arg0)
    Definition Classes
    Date
  289. def byteValue(): Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).byteValue()
    Definition Classes
    Number
  290. def byteValue(): Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).byteValue()
    Definition Classes
    Number
  291. def byteValueExact(): Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).byteValueExact()
    Definition Classes
    BigDecimal
  292. def byteValueExact(): Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).byteValueExact()
    Definition Classes
    BigDecimal
  293. def clone(): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsDecimal toArray[Byte] performed by method json2ByteArray in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Array[Byte]).clone()
    Definition Classes
    Array → AnyRef
  294. def clone(): AnyRef
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Date).clone()
    Definition Classes
    Date → AnyRef
  295. def clone(): AnyRef
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).clone()
    Definition Classes
    Date → AnyRef
  296. def compare(that: JsDecimal): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).compare(that)
    Definition Classes
    Ordered
  297. def compareTo(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: String).compareTo(arg0)
    Definition Classes
    String → Comparable
  298. def compareTo(arg0: Date): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Date).compareTo(arg0)
    Definition Classes
    Date → Comparable
  299. def compareTo(arg0: Date): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).compareTo(arg0)
    Definition Classes
    Timestamp → Date → Comparable
  300. def compareTo(arg0: Timestamp): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).compareTo(arg0)
    Definition Classes
    Timestamp
  301. def compareTo(arg0: ChronoLocalDateTime[_ <: AnyRef]): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).compareTo(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Comparable
  302. def compareTo(arg0: LocalTime): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).compareTo(arg0)
    Definition Classes
    LocalTime → Comparable
  303. def compareTo(arg0: ChronoLocalDate): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).compareTo(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Comparable
  304. def compareTo(arg0: BigDecimal): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).compareTo(arg0)
    Definition Classes
    BigDecimal → Comparable
  305. def compareTo(arg0: BigDecimal): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).compareTo(arg0)
    Definition Classes
    BigDecimal → Comparable
  306. def compareTo(that: JsDecimal): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).compareTo(that)
    Definition Classes
    Ordered → Comparable
  307. def divide(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1)
    Definition Classes
    BigDecimal
  308. def divide(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0)
    Definition Classes
    BigDecimal
  309. def divide(arg0: BigDecimal, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1)
    Definition Classes
    BigDecimal
  310. def divide(arg0: BigDecimal, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1)
    Definition Classes
    BigDecimal
  311. def divide(arg0: BigDecimal, arg1: Int, arg2: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1, arg2)
    Definition Classes
    BigDecimal
  312. def divide(arg0: BigDecimal, arg1: Int, arg2: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1, arg2)
    Definition Classes
    BigDecimal
  313. def divide(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1)
    Definition Classes
    BigDecimal
  314. def divide(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0)
    Definition Classes
    BigDecimal
  315. def divide(arg0: BigDecimal, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1)
    Definition Classes
    BigDecimal
  316. def divide(arg0: BigDecimal, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1)
    Definition Classes
    BigDecimal
  317. def divide(arg0: BigDecimal, arg1: Int, arg2: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1, arg2)
    Definition Classes
    BigDecimal
  318. def divide(arg0: BigDecimal, arg1: Int, arg2: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divide(arg0, arg1, arg2)
    Definition Classes
    BigDecimal
  319. def divideAndRemainder(arg0: BigDecimal, arg1: MathContext): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divideAndRemainder(arg0, arg1)
    Definition Classes
    BigDecimal
  320. def divideAndRemainder(arg0: BigDecimal): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divideAndRemainder(arg0)
    Definition Classes
    BigDecimal
  321. def divideAndRemainder(arg0: BigDecimal, arg1: MathContext): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divideAndRemainder(arg0, arg1)
    Definition Classes
    BigDecimal
  322. def divideAndRemainder(arg0: BigDecimal): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divideAndRemainder(arg0)
    Definition Classes
    BigDecimal
  323. def divideToIntegralValue(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divideToIntegralValue(arg0, arg1)
    Definition Classes
    BigDecimal
  324. def divideToIntegralValue(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divideToIntegralValue(arg0)
    Definition Classes
    BigDecimal
  325. def divideToIntegralValue(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divideToIntegralValue(arg0, arg1)
    Definition Classes
    BigDecimal
  326. def divideToIntegralValue(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).divideToIntegralValue(arg0)
    Definition Classes
    BigDecimal
  327. def doubleValue(): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).doubleValue()
    Definition Classes
    BigDecimal → Number
  328. def doubleValue(): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).doubleValue()
    Definition Classes
    BigDecimal → Number
  329. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: String).equals(arg0)
    Definition Classes
    String → AnyRef → Any
  330. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Date).equals(arg0)
    Definition Classes
    Date → AnyRef → Any
  331. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).equals(arg0)
    Definition Classes
    Timestamp → Date → AnyRef → Any
  332. def equals(arg0: Timestamp): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).equals(arg0)
    Definition Classes
    Timestamp
  333. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).equals(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → AnyRef → Any
  334. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).equals(arg0)
    Definition Classes
    LocalTime → AnyRef → Any
  335. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).equals(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → AnyRef → Any
  336. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).equals(arg0)
    Definition Classes
    BigDecimal → AnyRef → Any
  337. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).equals(arg0)
    Definition Classes
    BigDecimal → AnyRef → Any
  338. def floatValue(): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).floatValue()
    Definition Classes
    BigDecimal → Number
  339. def floatValue(): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).floatValue()
    Definition Classes
    BigDecimal → Number
  340. def format(arg0: DateTimeFormatter): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).format(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  341. def format(arg0: DateTimeFormatter): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).format(arg0)
    Definition Classes
    LocalTime
  342. def format(arg0: DateTimeFormatter): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).format(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate
  343. def get(arg0: TemporalField): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).get(arg0)
    Definition Classes
    LocalDateTime → TemporalAccessor
  344. def get(arg0: TemporalField): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).get(arg0)
    Definition Classes
    LocalTime → TemporalAccessor
  345. def get(arg0: TemporalField): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).get(arg0)
    Definition Classes
    LocalDate → TemporalAccessor
  346. def getChronology(): Chronology
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getChronology()
    Definition Classes
    ChronoLocalDateTime
  347. def getChronology(): IsoChronology
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).getChronology()
    Definition Classes
    LocalDate → ChronoLocalDate
  348. def getDayOfMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getDayOfMonth()
    Definition Classes
    LocalDateTime
  349. def getDayOfMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).getDayOfMonth()
    Definition Classes
    LocalDate
  350. def getDayOfWeek(): DayOfWeek
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getDayOfWeek()
    Definition Classes
    LocalDateTime
  351. def getDayOfWeek(): DayOfWeek
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).getDayOfWeek()
    Definition Classes
    LocalDate
  352. def getDayOfYear(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getDayOfYear()
    Definition Classes
    LocalDateTime
  353. def getDayOfYear(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).getDayOfYear()
    Definition Classes
    LocalDate
  354. def getHour(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getHour()
    Definition Classes
    LocalDateTime
  355. def getHour(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).getHour()
    Definition Classes
    LocalTime
  356. def getLong(arg0: TemporalField): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getLong(arg0)
    Definition Classes
    LocalDateTime → TemporalAccessor
  357. def getLong(arg0: TemporalField): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).getLong(arg0)
    Definition Classes
    LocalTime → TemporalAccessor
  358. def getLong(arg0: TemporalField): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).getLong(arg0)
    Definition Classes
    LocalDate → TemporalAccessor
  359. def getMinute(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getMinute()
    Definition Classes
    LocalDateTime
  360. def getMinute(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).getMinute()
    Definition Classes
    LocalTime
  361. def getMonth(): Month
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getMonth()
    Definition Classes
    LocalDateTime
  362. def getMonth(): Month
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).getMonth()
    Definition Classes
    LocalDate
  363. def getMonthValue(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getMonthValue()
    Definition Classes
    LocalDateTime
  364. def getMonthValue(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).getMonthValue()
    Definition Classes
    LocalDate
  365. def getNano(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getNano()
    Definition Classes
    LocalDateTime
  366. def getNano(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).getNano()
    Definition Classes
    LocalTime
  367. def getSecond(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getSecond()
    Definition Classes
    LocalDateTime
  368. def getSecond(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).getSecond()
    Definition Classes
    LocalTime
  369. def getTime(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getTime()
    Definition Classes
    Date
  370. def getTime(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getTime()
    Definition Classes
    Timestamp → Date
  371. def getYear(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).getYear()
    Definition Classes
    LocalDateTime
  372. def getYear(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).getYear()
    Definition Classes
    LocalDate
  373. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: String).hashCode()
    Definition Classes
    String → AnyRef → Any
  374. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).hashCode()
    Definition Classes
    Date → AnyRef → Any
  375. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).hashCode()
    Definition Classes
    Timestamp → Date → AnyRef → Any
  376. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).hashCode()
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → AnyRef → Any
  377. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).hashCode()
    Definition Classes
    LocalTime → AnyRef → Any
  378. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).hashCode()
    Definition Classes
    LocalDate → ChronoLocalDate → AnyRef → Any
  379. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).hashCode()
    Definition Classes
    BigDecimal → AnyRef → Any
  380. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).hashCode()
    Definition Classes
    BigDecimal → AnyRef → Any
  381. def intValue(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).intValue()
    Definition Classes
    BigDecimal → Number
  382. def intValue(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).intValue()
    Definition Classes
    BigDecimal → Number
  383. def intValueExact(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).intValueExact()
    Definition Classes
    BigDecimal
  384. def intValueExact(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).intValueExact()
    Definition Classes
    BigDecimal
  385. def isSupported(arg0: TemporalUnit): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).isSupported(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  386. def isSupported(arg0: TemporalField): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).isSupported(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → TemporalAccessor
  387. def isSupported(arg0: TemporalUnit): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).isSupported(arg0)
    Definition Classes
    LocalTime → Temporal
  388. def isSupported(arg0: TemporalField): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).isSupported(arg0)
    Definition Classes
    LocalTime → TemporalAccessor
  389. def isSupported(arg0: TemporalUnit): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).isSupported(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  390. def isSupported(arg0: TemporalField): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).isSupported(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → TemporalAccessor
  391. def longValue(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).longValue()
    Definition Classes
    BigDecimal → Number
  392. def longValue(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).longValue()
    Definition Classes
    BigDecimal → Number
  393. def longValueExact(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).longValueExact()
    Definition Classes
    BigDecimal
  394. def longValueExact(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).longValueExact()
    Definition Classes
    BigDecimal
  395. def max(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).max(arg0)
    Definition Classes
    BigDecimal
  396. def max(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).max(arg0)
    Definition Classes
    BigDecimal
  397. def min(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).min(arg0)
    Definition Classes
    BigDecimal
  398. def min(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).min(arg0)
    Definition Classes
    BigDecimal
  399. def minus(arg0: Long, arg1: TemporalUnit): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minus(arg0, arg1)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  400. def minus(arg0: TemporalAmount): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minus(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  401. def minus(arg0: Long, arg1: TemporalUnit): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).minus(arg0, arg1)
    Definition Classes
    LocalTime → Temporal
  402. def minus(arg0: TemporalAmount): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).minus(arg0)
    Definition Classes
    LocalTime → Temporal
  403. def minus(arg0: Long, arg1: TemporalUnit): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).minus(arg0, arg1)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  404. def minus(arg0: TemporalAmount): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).minus(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  405. def minusDays(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minusDays(arg0)
    Definition Classes
    LocalDateTime
  406. def minusDays(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).minusDays(arg0)
    Definition Classes
    LocalDate
  407. def minusHours(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minusHours(arg0)
    Definition Classes
    LocalDateTime
  408. def minusHours(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).minusHours(arg0)
    Definition Classes
    LocalTime
  409. def minusMinutes(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minusMinutes(arg0)
    Definition Classes
    LocalDateTime
  410. def minusMinutes(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).minusMinutes(arg0)
    Definition Classes
    LocalTime
  411. def minusMonths(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minusMonths(arg0)
    Definition Classes
    LocalDateTime
  412. def minusMonths(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).minusMonths(arg0)
    Definition Classes
    LocalDate
  413. def minusNanos(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minusNanos(arg0)
    Definition Classes
    LocalDateTime
  414. def minusNanos(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).minusNanos(arg0)
    Definition Classes
    LocalTime
  415. def minusSeconds(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minusSeconds(arg0)
    Definition Classes
    LocalDateTime
  416. def minusSeconds(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).minusSeconds(arg0)
    Definition Classes
    LocalTime
  417. def minusWeeks(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minusWeeks(arg0)
    Definition Classes
    LocalDateTime
  418. def minusWeeks(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).minusWeeks(arg0)
    Definition Classes
    LocalDate
  419. def minusYears(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).minusYears(arg0)
    Definition Classes
    LocalDateTime
  420. def minusYears(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).minusYears(arg0)
    Definition Classes
    LocalDate
  421. def movePointLeft(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).movePointLeft(arg0)
    Definition Classes
    BigDecimal
  422. def movePointLeft(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).movePointLeft(arg0)
    Definition Classes
    BigDecimal
  423. def movePointRight(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).movePointRight(arg0)
    Definition Classes
    BigDecimal
  424. def movePointRight(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).movePointRight(arg0)
    Definition Classes
    BigDecimal
  425. def multiply(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).multiply(arg0, arg1)
    Definition Classes
    BigDecimal
  426. def multiply(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).multiply(arg0)
    Definition Classes
    BigDecimal
  427. def multiply(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).multiply(arg0, arg1)
    Definition Classes
    BigDecimal
  428. def multiply(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).multiply(arg0)
    Definition Classes
    BigDecimal
  429. def negate(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).negate(arg0)
    Definition Classes
    BigDecimal
  430. def negate(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).negate()
    Definition Classes
    BigDecimal
  431. def negate(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).negate(arg0)
    Definition Classes
    BigDecimal
  432. def negate(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).negate()
    Definition Classes
    BigDecimal
  433. def plus(arg0: Long, arg1: TemporalUnit): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plus(arg0, arg1)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  434. def plus(arg0: TemporalAmount): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plus(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  435. def plus(arg0: Long, arg1: TemporalUnit): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).plus(arg0, arg1)
    Definition Classes
    LocalTime → Temporal
  436. def plus(arg0: TemporalAmount): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).plus(arg0)
    Definition Classes
    LocalTime → Temporal
  437. def plus(arg0: Long, arg1: TemporalUnit): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).plus(arg0, arg1)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  438. def plus(arg0: TemporalAmount): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).plus(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  439. def plus(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).plus(arg0)
    Definition Classes
    BigDecimal
  440. def plus(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).plus()
    Definition Classes
    BigDecimal
  441. def plus(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).plus(arg0)
    Definition Classes
    BigDecimal
  442. def plus(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).plus()
    Definition Classes
    BigDecimal
  443. def plusDays(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plusDays(arg0)
    Definition Classes
    LocalDateTime
  444. def plusDays(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).plusDays(arg0)
    Definition Classes
    LocalDate
  445. def plusHours(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plusHours(arg0)
    Definition Classes
    LocalDateTime
  446. def plusHours(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).plusHours(arg0)
    Definition Classes
    LocalTime
  447. def plusMinutes(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plusMinutes(arg0)
    Definition Classes
    LocalDateTime
  448. def plusMinutes(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).plusMinutes(arg0)
    Definition Classes
    LocalTime
  449. def plusMonths(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plusMonths(arg0)
    Definition Classes
    LocalDateTime
  450. def plusMonths(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).plusMonths(arg0)
    Definition Classes
    LocalDate
  451. def plusNanos(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plusNanos(arg0)
    Definition Classes
    LocalDateTime
  452. def plusNanos(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).plusNanos(arg0)
    Definition Classes
    LocalTime
  453. def plusSeconds(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plusSeconds(arg0)
    Definition Classes
    LocalDateTime
  454. def plusSeconds(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).plusSeconds(arg0)
    Definition Classes
    LocalTime
  455. def plusWeeks(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plusWeeks(arg0)
    Definition Classes
    LocalDateTime
  456. def plusWeeks(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).plusWeeks(arg0)
    Definition Classes
    LocalDate
  457. def plusYears(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).plusYears(arg0)
    Definition Classes
    LocalDateTime
  458. def plusYears(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).plusYears(arg0)
    Definition Classes
    LocalDate
  459. def pow(arg0: Int, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).pow(arg0, arg1)
    Definition Classes
    BigDecimal
  460. def pow(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).pow(arg0)
    Definition Classes
    BigDecimal
  461. def pow(arg0: Int, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).pow(arg0, arg1)
    Definition Classes
    BigDecimal
  462. def pow(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).pow(arg0)
    Definition Classes
    BigDecimal
  463. def precision(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).precision()
    Definition Classes
    BigDecimal
  464. def precision(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).precision()
    Definition Classes
    BigDecimal
  465. def range(arg0: TemporalField): ValueRange
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).range(arg0)
    Definition Classes
    LocalDateTime → TemporalAccessor
  466. def range(arg0: TemporalField): ValueRange
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).range(arg0)
    Definition Classes
    LocalTime → TemporalAccessor
  467. def range(arg0: TemporalField): ValueRange
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).range(arg0)
    Definition Classes
    LocalDate → TemporalAccessor
  468. def remainder(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).remainder(arg0, arg1)
    Definition Classes
    BigDecimal
  469. def remainder(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).remainder(arg0)
    Definition Classes
    BigDecimal
  470. def remainder(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).remainder(arg0, arg1)
    Definition Classes
    BigDecimal
  471. def remainder(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).remainder(arg0)
    Definition Classes
    BigDecimal
  472. def round(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).round(arg0)
    Definition Classes
    BigDecimal
  473. def round(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).round(arg0)
    Definition Classes
    BigDecimal
  474. def scale(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).scale()
    Definition Classes
    BigDecimal
  475. def scale(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).scale()
    Definition Classes
    BigDecimal
  476. def scaleByPowerOfTen(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).scaleByPowerOfTen(arg0)
    Definition Classes
    BigDecimal
  477. def scaleByPowerOfTen(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).scaleByPowerOfTen(arg0)
    Definition Classes
    BigDecimal
  478. def setScale(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).setScale(arg0)
    Definition Classes
    BigDecimal
  479. def setScale(arg0: Int, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).setScale(arg0, arg1)
    Definition Classes
    BigDecimal
  480. def setScale(arg0: Int, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).setScale(arg0, arg1)
    Definition Classes
    BigDecimal
  481. def setScale(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).setScale(arg0)
    Definition Classes
    BigDecimal
  482. def setScale(arg0: Int, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).setScale(arg0, arg1)
    Definition Classes
    BigDecimal
  483. def setScale(arg0: Int, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).setScale(arg0, arg1)
    Definition Classes
    BigDecimal
  484. def setTime(arg0: Long): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).setTime(arg0)
    Definition Classes
    Date
  485. def setTime(arg0: Long): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).setTime(arg0)
    Definition Classes
    Timestamp → Date
  486. def shortValue(): Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).shortValue()
    Definition Classes
    Number
  487. def shortValue(): Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).shortValue()
    Definition Classes
    Number
  488. def shortValueExact(): Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).shortValueExact()
    Definition Classes
    BigDecimal
  489. def shortValueExact(): Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).shortValueExact()
    Definition Classes
    BigDecimal
  490. def signum(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).signum()
    Definition Classes
    BigDecimal
  491. def signum(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).signum()
    Definition Classes
    BigDecimal
  492. def stripTrailingZeros(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).stripTrailingZeros()
    Definition Classes
    BigDecimal
  493. def stripTrailingZeros(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).stripTrailingZeros()
    Definition Classes
    BigDecimal
  494. def subtract(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).subtract(arg0, arg1)
    Definition Classes
    BigDecimal
  495. def subtract(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).subtract(arg0)
    Definition Classes
    BigDecimal
  496. def subtract(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).subtract(arg0, arg1)
    Definition Classes
    BigDecimal
  497. def subtract(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).subtract(arg0)
    Definition Classes
    BigDecimal
  498. def toBigInteger(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toBigInteger()
    Definition Classes
    BigDecimal
  499. def toBigInteger(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toBigInteger()
    Definition Classes
    BigDecimal
  500. def toBigIntegerExact(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toBigIntegerExact()
    Definition Classes
    BigDecimal
  501. def toBigIntegerExact(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toBigIntegerExact()
    Definition Classes
    BigDecimal
  502. def toByte: Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).toByte
    Definition Classes
    Double
  503. def toByte: Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).toByte
    Definition Classes
    Long
  504. def toByte: Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).toByte
    Definition Classes
    Int
  505. def toChar: Char
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).toChar
    Definition Classes
    Double
  506. def toChar: Char
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).toChar
    Definition Classes
    Long
  507. def toChar: Char
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).toChar
    Definition Classes
    Int
  508. def toDouble: Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).toDouble
    Definition Classes
    Double
  509. def toDouble: Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).toDouble
    Definition Classes
    Long
  510. def toDouble: Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).toDouble
    Definition Classes
    Int
  511. def toEngineeringString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toEngineeringString()
    Definition Classes
    BigDecimal
  512. def toEngineeringString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toEngineeringString()
    Definition Classes
    BigDecimal
  513. def toFloat: Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).toFloat
    Definition Classes
    Double
  514. def toFloat: Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).toFloat
    Definition Classes
    Long
  515. def toFloat: Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).toFloat
    Definition Classes
    Int
  516. def toInstant(): Instant
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).toInstant()
    Definition Classes
    Date
  517. def toInstant(): Instant
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).toInstant()
    Definition Classes
    Timestamp → Date
  518. def toInt: Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).toInt
    Definition Classes
    Double
  519. def toInt: Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).toInt
    Definition Classes
    Long
  520. def toInt: Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).toInt
    Definition Classes
    Int
  521. def toLong: Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).toLong
    Definition Classes
    Double
  522. def toLong: Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).toLong
    Definition Classes
    Long
  523. def toLong: Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).toLong
    Definition Classes
    Int
  524. def toPlainString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toPlainString()
    Definition Classes
    BigDecimal
  525. def toPlainString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toPlainString()
    Definition Classes
    BigDecimal
  526. def toShort: Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).toShort
    Definition Classes
    Double
  527. def toShort: Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).toShort
    Definition Classes
    Long
  528. def toShort: Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).toShort
    Definition Classes
    Int
  529. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: String).toString()
    Definition Classes
    String → CharSequence → AnyRef → Any
  530. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Date).toString()
    Definition Classes
    Date → AnyRef → Any
  531. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).toString()
    Definition Classes
    Timestamp → Date → AnyRef → Any
  532. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).toString()
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → AnyRef → Any
  533. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).toString()
    Definition Classes
    LocalTime → AnyRef → Any
  534. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).toString()
    Definition Classes
    LocalDate → ChronoLocalDate → AnyRef → Any
  535. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toString()
    Definition Classes
    BigDecimal → AnyRef → Any
  536. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toString()
    Definition Classes
    BigDecimal → AnyRef → Any
  537. def truncatedTo(arg0: TemporalUnit): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).truncatedTo(arg0)
    Definition Classes
    LocalDateTime
  538. def truncatedTo(arg0: TemporalUnit): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).truncatedTo(arg0)
    Definition Classes
    LocalTime
  539. def ulp(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).ulp()
    Definition Classes
    BigDecimal
  540. def ulp(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).ulp()
    Definition Classes
    BigDecimal
  541. def unary_+: Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).unary_+
    Definition Classes
    Double
  542. def unary_+: Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).unary_+
    Definition Classes
    Long
  543. def unary_+: Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).unary_+
    Definition Classes
    Int
  544. def unary_-: Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).unary_-
    Definition Classes
    Double
  545. def unary_-: Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).unary_-
    Definition Classes
    Long
  546. def unary_-: Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).unary_-
    Definition Classes
    Int
  547. def unary_~: Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).unary_~
    Definition Classes
    Long
  548. def unary_~: Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).unary_~
    Definition Classes
    Int
  549. def unscaledValue(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).unscaledValue()
    Definition Classes
    BigDecimal
  550. def unscaledValue(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).unscaledValue()
    Definition Classes
    BigDecimal
  551. def until(arg0: Temporal, arg1: TemporalUnit): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).until(arg0, arg1)
    Definition Classes
    LocalDateTime → Temporal
  552. def until(arg0: Temporal, arg1: TemporalUnit): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).until(arg0, arg1)
    Definition Classes
    LocalTime → Temporal
  553. def until(arg0: Temporal, arg1: TemporalUnit): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).until(arg0, arg1)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  554. def update(i: Int, x: Byte): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toArray[Byte] performed by method json2ByteArray in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Array[Byte]).update(i, x)
    Definition Classes
    Array
  555. def with(arg0: TemporalField, arg1: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).with(arg0, arg1)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  556. def with(arg0: TemporalAdjuster): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).with(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  557. def with(arg0: TemporalField, arg1: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).with(arg0, arg1)
    Definition Classes
    LocalTime → Temporal
  558. def with(arg0: TemporalAdjuster): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).with(arg0)
    Definition Classes
    LocalTime → Temporal
  559. def with(arg0: TemporalField, arg1: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).with(arg0, arg1)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  560. def with(arg0: TemporalAdjuster): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).with(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  561. def withDayOfMonth(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).withDayOfMonth(arg0)
    Definition Classes
    LocalDateTime
  562. def withDayOfMonth(arg0: Int): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).withDayOfMonth(arg0)
    Definition Classes
    LocalDate
  563. def withDayOfYear(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).withDayOfYear(arg0)
    Definition Classes
    LocalDateTime
  564. def withDayOfYear(arg0: Int): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).withDayOfYear(arg0)
    Definition Classes
    LocalDate
  565. def withHour(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).withHour(arg0)
    Definition Classes
    LocalDateTime
  566. def withHour(arg0: Int): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).withHour(arg0)
    Definition Classes
    LocalTime
  567. def withMinute(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).withMinute(arg0)
    Definition Classes
    LocalDateTime
  568. def withMinute(arg0: Int): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).withMinute(arg0)
    Definition Classes
    LocalTime
  569. def withMonth(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).withMonth(arg0)
    Definition Classes
    LocalDateTime
  570. def withMonth(arg0: Int): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).withMonth(arg0)
    Definition Classes
    LocalDate
  571. def withNano(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).withNano(arg0)
    Definition Classes
    LocalDateTime
  572. def withNano(arg0: Int): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).withNano(arg0)
    Definition Classes
    LocalTime
  573. def withSecond(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).withSecond(arg0)
    Definition Classes
    LocalDateTime
  574. def withSecond(arg0: Int): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalTime performed by method json2LocalTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalTime).withSecond(arg0)
    Definition Classes
    LocalTime
  575. def withYear(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDateTime).withYear(arg0)
    Definition Classes
    LocalDateTime
  576. def withYear(arg0: Int): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDecimal toLocalDate performed by method json2LocalDate in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: LocalDate).withYear(arg0)
    Definition Classes
    LocalDate
  577. def |(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).|(x)
    Definition Classes
    Long
  578. def |(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).|(x)
    Definition Classes
    Long
  579. def |(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).|(x)
    Definition Classes
    Long
  580. def |(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).|(x)
    Definition Classes
    Long
  581. def |(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).|(x)
    Definition Classes
    Long
  582. def |(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).|(x)
    Definition Classes
    Int
  583. def |(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).|(x)
    Definition Classes
    Int
  584. def |(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).|(x)
    Definition Classes
    Int
  585. def |(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).|(x)
    Definition Classes
    Int
  586. def |(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).|(x)
    Definition Classes
    Int

Deprecated Value Members

  1. def +(x: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toDouble performed by method json2Double in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Double).+(x)
    Definition Classes
    Double
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation s"$num$str"

  2. def +(x: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toLong performed by method json2Long in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Long).+(x)
    Definition Classes
    Long
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation s"$num$str"

  3. def +(x: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).+(x)
    Definition Classes
    Int
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation s"$num$str"

  4. def <<(x: Long): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).<<(x)
    Definition Classes
    Int
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.7) shifting a value by a Long argument is deprecated (except when the value is a Long). Call toInt on the argument to maintain the current behavior and avoid the deprecation warning.

  5. def >>(x: Long): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>>(x)
    Definition Classes
    Int
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.7) shifting a value by a Long argument is deprecated (except when the value is a Long). Call toInt on the argument to maintain the current behavior and avoid the deprecation warning.

  6. def >>>(x: Long): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toInt performed by method json2Int in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Int).>>>(x)
    Definition Classes
    Int
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.7) shifting a value by a Long argument is deprecated (except when the value is a Long). Call toInt on the argument to maintain the current behavior and avoid the deprecation warning.

  7. def getBytes(arg0: Int, arg1: Int, arg2: Array[Byte], arg3: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toString performed by method json2String in smile.json.
    Definition Classes
    String
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  8. def getDate(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getDate()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  9. def getDate(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getDate()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  10. def getDay(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getDay()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  11. def getDay(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getDay()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  12. def getHours(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getHours()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  13. def getHours(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getHours()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  14. def getMinutes(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getMinutes()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  15. def getMinutes(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getMinutes()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  16. def getMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getMonth()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  17. def getMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getMonth()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  18. def getSeconds(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getSeconds()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  19. def getSeconds(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getSeconds()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  20. def getTimezoneOffset(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getTimezoneOffset()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  21. def getTimezoneOffset(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getTimezoneOffset()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  22. def getYear(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).getYear()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  23. def getYear(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).getYear()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  24. def setDate(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).setDate(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  25. def setDate(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).setDate(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  26. def setHours(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).setHours(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  27. def setHours(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).setHours(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  28. def setMinutes(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).setMinutes(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  29. def setMinutes(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).setMinutes(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  30. def setMonth(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).setMonth(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  31. def setMonth(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).setMonth(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  32. def setSeconds(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).setSeconds(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  33. def setSeconds(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).setSeconds(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  34. def setYear(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).setYear(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  35. def setYear(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).setYear(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  36. def toGMTString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).toGMTString()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  37. def toGMTString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).toGMTString()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  38. def toLocaleString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toDate performed by method json2Date in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Date).toLocaleString()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  39. def toLocaleString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toTimestamp performed by method json2Timestamp in smile.json.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jsDecimal: Timestamp).toLocaleString()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  40. def [B](y: B): (JsDecimal, B)
    Implicit
    This member is added by an implicit conversion from JsDecimal toArrowAssoc[JsDecimal] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Ordered[JsDecimal]

Inherited from Comparable[JsDecimal]

Inherited from JsValue

Inherited from Dynamic

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion json2ByteArray fromJsDecimal to Array[Byte]

Inherited by implicit conversion json2String fromJsDecimal to String

Inherited by implicit conversion json2Date fromJsDecimal to Date

Inherited by implicit conversion json2Timestamp fromJsDecimal to Timestamp

Inherited by implicit conversion json2LocalDateTime fromJsDecimal to LocalDateTime

Inherited by implicit conversion json2LocalTime fromJsDecimal to LocalTime

Inherited by implicit conversion json2LocalDate fromJsDecimal to LocalDate

Inherited by implicit conversion json2BigDecimal fromJsDecimal to BigDecimal

Inherited by implicit conversion json2Double fromJsDecimal to Double

Inherited by implicit conversion json2Long fromJsDecimal to Long

Inherited by implicit conversion json2Int fromJsDecimal to Int

Inherited by implicit conversion json2Boolean fromJsDecimal to Boolean

Inherited by implicit conversion json2BigDecimal fromJsDecimal to BigDecimal

Inherited by implicit conversion orderingToOrdered fromJsDecimal to Ordered[JsDecimal]

Inherited by implicit conversion any2stringadd fromJsDecimal to any2stringadd[JsDecimal]

Inherited by implicit conversion StringFormat fromJsDecimal to StringFormat[JsDecimal]

Inherited by implicit conversion Ensuring fromJsDecimal to Ensuring[JsDecimal]

Inherited by implicit conversion ArrowAssoc fromJsDecimal to ArrowAssoc[JsDecimal]

Ungrouped