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 JsInt(value: Int) extends JsValue with Ordered[JsInt] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Ordered[JsInt], Comparable[JsInt], JsValue, Dynamic, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsInt
  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 json2Int
  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 JsInt(value: Int)

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

Deprecated Value Members

  1. def +(x: String): String
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: 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 JsInt 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:
    (jsInt: 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 JsInt 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:
    (jsInt: 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: String): String
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: 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"

  5. def <<(x: Long): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: 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 JsInt 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:
    (jsInt: 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 >>(x: Long): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: 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.

  8. def >>(x: Long): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: 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.

  9. def >>>(x: Long): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: 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.

  10. def >>>(x: Long): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: 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.

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

    (Since version ) see corresponding Javadoc for more information.

  12. def getDate(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).getDate()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  13. def getDate(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).getDate()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  14. def getDay(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).getDay()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  15. def getDay(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).getDay()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  16. def getHours(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).getHours()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  17. def getHours(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).getHours()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  18. def getMinutes(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).getMinutes()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  19. def getMinutes(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).getMinutes()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  20. def getMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).getMonth()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  21. def getMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).getMonth()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  22. def getSeconds(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).getSeconds()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  23. def getSeconds(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).getSeconds()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  24. def getTimezoneOffset(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).getTimezoneOffset()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  25. def getTimezoneOffset(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).getTimezoneOffset()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  26. def getYear(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).getYear()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  27. def getYear(): Int
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).getYear()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  28. def setDate(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).setDate(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  29. def setDate(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).setDate(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  30. def setHours(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).setHours(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  31. def setHours(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).setHours(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  32. def setMinutes(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).setMinutes(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  33. def setMinutes(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).setMinutes(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  34. def setMonth(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).setMonth(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  35. def setMonth(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).setMonth(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  36. def setSeconds(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).setSeconds(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  37. def setSeconds(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).setSeconds(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  38. def setYear(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).setYear(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  39. def setYear(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).setYear(arg0)
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  40. def toGMTString(): String
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).toGMTString()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  41. def toGMTString(): String
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).toGMTString()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  42. def toLocaleString(): String
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Date).toLocaleString()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  43. def toLocaleString(): String
    Implicit
    This member is added by an implicit conversion from JsInt 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:
    (jsInt: Timestamp).toLocaleString()
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  44. def [B](y: B): (JsInt, B)
    Implicit
    This member is added by an implicit conversion from JsInt toArrowAssoc[JsInt] 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[JsInt]

Inherited from Comparable[JsInt]

Inherited from JsValue

Inherited from Dynamic

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion json2ByteArray fromJsInt to Array[Byte]

Inherited by implicit conversion json2String fromJsInt to String

Inherited by implicit conversion json2Date fromJsInt to Date

Inherited by implicit conversion json2Timestamp fromJsInt to Timestamp

Inherited by implicit conversion json2LocalDateTime fromJsInt to LocalDateTime

Inherited by implicit conversion json2LocalTime fromJsInt to LocalTime

Inherited by implicit conversion json2LocalDate fromJsInt to LocalDate

Inherited by implicit conversion json2BigDecimal fromJsInt to BigDecimal

Inherited by implicit conversion json2Double fromJsInt to Double

Inherited by implicit conversion json2Long fromJsInt to Long

Inherited by implicit conversion json2Int fromJsInt to Int

Inherited by implicit conversion json2Boolean fromJsInt to Boolean

Inherited by implicit conversion json2Int fromJsInt to Int

Inherited by implicit conversion orderingToOrdered fromJsInt to Ordered[JsInt]

Inherited by implicit conversion any2stringadd fromJsInt to any2stringadd[JsInt]

Inherited by implicit conversion StringFormat fromJsInt to StringFormat[JsInt]

Inherited by implicit conversion Ensuring fromJsInt to Ensuring[JsInt]

Inherited by implicit conversion ArrowAssoc fromJsInt to ArrowAssoc[JsInt]

Ungrouped