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 JsArray(elements: ArrayBuffer[JsValue]) extends JsValue with Iterable[JsValue] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Iterable[JsValue], IterableFactoryDefaults[JsValue, Iterable], IterableOps[JsValue, Iterable, Iterable[JsValue]], IterableOnceOps[JsValue, Iterable, Iterable[JsValue]], IterableOnce[JsValue], JsValue, Dynamic, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsArray
  2. Serializable
  3. Product
  4. Equals
  5. Iterable
  6. IterableFactoryDefaults
  7. IterableOps
  8. IterableOnceOps
  9. IterableOnce
  10. JsValue
  11. Dynamic
  12. AnyRef
  13. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by json2ByteArray
  3. by json2String
  4. by json2Date
  5. by json2Timestamp
  6. by json2LocalDateTime
  7. by json2LocalTime
  8. by json2LocalDate
  9. by json2BigDecimal
  10. by json2Double
  11. by json2Long
  12. by json2Int
  13. by json2Boolean
  14. by jsArrayTopLevel
  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 JsArray(elements: ArrayBuffer[JsValue])

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 JsArray 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 JsArray toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  5. final def ++[B >: JsValue](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  6. def ++=(xs: IterableOnce[JsValue]): JsValue

    Appends a number of elements provided by an iterable object.

    Appends a number of elements provided by an iterable object. The identity of the array is returned.

    xs

    the iterable object.

    returns

    the updated buffer.

  7. def ++=:(xs: IterableOnce[JsValue]): JsValue

    Prepends a number of elements provided by an iterable object.

    Prepends a number of elements provided by an iterable object. The identity of the array is returned.

    xs

    the iterable object.

    returns

    the updated array.

  8. def +=(elem: JsValue): JsArray

    Appends a single element to this array and returns the identity of the array.

    Appends a single element to this array and returns the identity of the array. It takes constant amortized time.

    elem

    the element to append.

    returns

    the updated array.

  9. def +=:(elem: JsValue): JsValue

    Prepends a single element to this buffer and returns the identity of the array.

    Prepends a single element to this buffer and returns the identity of the array. It takes time linear in the buffer size.

    elem

    the element to prepend.

    returns

    the updated array.

  10. def ->[B](y: B): (JsArray, B)
    Implicit
    This member is added by an implicit conversion from JsArray toArrowAssoc[JsArray] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  11. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def ^(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  13. def abs(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  14. def abs(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  15. def add(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  16. def add(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  17. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  18. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  19. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  20. def apply(range: Range): JsArray
    Definition Classes
    JsArrayJsValue
  21. def apply(start: Int, end: Int, step: Int): JsArray
    Definition Classes
    JsArrayJsValue
  22. def apply(start: Int, end: Int): JsArray
    Definition Classes
    JsArrayJsValue
  23. def apply(index: Int): JsValue
    Definition Classes
    JsArrayJsValue
  24. def apply(key: String): JsValue
    Definition Classes
    JsValue
  25. def applyDynamic(key: String): JsValue
    Definition Classes
    JsValue
  26. def asBoolean: Boolean
    Definition Classes
    JsValue
  27. def asDate: LocalDate
    Definition Classes
    JsValue
  28. def asDateTime: LocalDateTime
    Definition Classes
    JsValue
  29. def asDecimal: BigDecimal
    Definition Classes
    JsValue
  30. def asDouble: Double
    Definition Classes
    JsValue
  31. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  32. def asInt: Int
    Definition Classes
    JsValue
  33. def asLong: Long
    Definition Classes
    JsValue
  34. def asTime: LocalTime
    Definition Classes
    JsValue
  35. def asTimestamp: Timestamp
    Definition Classes
    JsValue
  36. def atDate(arg0: LocalDate): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  37. def atStartOfDay(arg0: ZoneId): ZonedDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  38. def atStartOfDay(): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  39. def atTime(arg0: OffsetTime): OffsetDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  40. def atTime(arg0: Int, arg1: Int, arg2: Int, arg3: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  41. def atTime(arg0: Int, arg1: Int, arg2: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  42. def atTime(arg0: Int, arg1: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  43. def atTime(arg0: LocalTime): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  44. def atZone(arg0: ZoneId): ZonedDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  45. def byteValue(): Byte
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    Number
  46. def byteValueExact(): Byte
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  47. def charAt(arg0: Int): Char
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  48. def chars(): IntStream
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    CharSequence
  49. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  50. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  51. def codePointAt(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  52. def codePointBefore(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  53. def codePointCount(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  54. def codePoints(): IntStream
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    CharSequence
  55. final def coll: JsArray.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  56. def collect[B](pf: PartialFunction[JsValue, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  57. def collectFirst[B](pf: PartialFunction[JsValue, B]): Option[B]
    Definition Classes
    IterableOnceOps
  58. def compactPrint: String
    Definition Classes
    JsValue
  59. def compareTo(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String → Comparable
  60. def compareTo(arg0: ChronoLocalDateTime[_ <: AnyRef]): Int
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Comparable
  61. def compareTo(arg0: LocalTime): Int
    Implicit
    This member is added by an implicit conversion from JsArray toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime → Comparable
  62. def compareTo(arg0: ChronoLocalDate): Int
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate → Comparable
  63. def compareTo(arg0: BigDecimal): Int
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Comparable
  64. def compareToIgnoreCase(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  65. def concat[B >: JsValue](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  66. def contains(arg0: CharSequence): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  67. final def contains[B1 >: B](elem: B1): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  68. def contentEquals(arg0: CharSequence): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  69. def contentEquals(arg0: StringBuffer): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  70. def copyToArray[B >: JsValue](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  71. def copyToArray[B >: JsValue](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  72. def copyToArray[B >: JsValue](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  73. def corresponds[B](that: IterableOnce[B])(p: (JsValue, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  74. def count(p: (JsValue) => Boolean): Int
    Definition Classes
    IterableOnceOps
  75. def divide(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  76. def divide(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  77. def divide(arg0: BigDecimal, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  78. def divide(arg0: BigDecimal, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  79. def divide(arg0: BigDecimal, arg1: Int, arg2: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  80. def divide(arg0: BigDecimal, arg1: Int, arg2: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  81. def divideAndRemainder(arg0: BigDecimal, arg1: MathContext): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  82. def divideAndRemainder(arg0: BigDecimal): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  83. def divideToIntegralValue(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  84. def divideToIntegralValue(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  85. def doubleValue(): Double
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  86. def drop(n: Int): Iterable[JsValue]
    Definition Classes
    IterableOps → IterableOnceOps
  87. def dropRight(n: Int): Iterable[JsValue]
    Definition Classes
    IterableOps
  88. def dropWhile(p: (JsValue) => Boolean): Iterable[JsValue]
    Definition Classes
    IterableOps → IterableOnceOps
  89. val elements: ArrayBuffer[JsValue]
  90. def empty: Iterable[JsValue]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  91. def endsWith(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  92. def ensuring(cond: (JsArray) => Boolean, msg: => Any): JsArray
    Implicit
    This member is added by an implicit conversion from JsArray toEnsuring[JsArray] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  93. def ensuring(cond: (JsArray) => Boolean): JsArray
    Implicit
    This member is added by an implicit conversion from JsArray toEnsuring[JsArray] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  94. def ensuring(cond: Boolean, msg: => Any): JsArray
    Implicit
    This member is added by an implicit conversion from JsArray toEnsuring[JsArray] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  95. def ensuring(cond: Boolean): JsArray
    Implicit
    This member is added by an implicit conversion from JsArray toEnsuring[JsArray] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  96. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  97. def equals(o: Any): Boolean
    Definition Classes
    JsArray → Equals → AnyRef → Any
  98. def equalsIgnoreCase(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  99. def exists(p: (JsValue) => Boolean): Boolean
    Definition Classes
    JsArray → IterableOnceOps
  100. def filter(pred: (JsValue) => Boolean): Iterable[JsValue]
    Definition Classes
    IterableOps → IterableOnceOps
  101. def filterNot(pred: (JsValue) => Boolean): Iterable[JsValue]
    Definition Classes
    IterableOps → IterableOnceOps
  102. def filterOrElse[A1 >: A](p: (JsArray) => Boolean, zero: => A1): Either[A1, JsArray]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  103. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  104. def find(p: (JsValue) => Boolean): Option[JsValue]
    Definition Classes
    JsArray → IterableOnceOps
  105. def flatMap[B](f: (JsValue) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  106. def flatten[B](implicit asIterable: (JsValue) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  107. def floatValue(): Float
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  108. def fold[A1 >: JsValue](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  109. def foldLeft[B](z: B)(op: (B, JsValue) => B): B
    Definition Classes
    IterableOnceOps
  110. def foldRight[B](z: B)(op: (JsValue, B) => B): B
    Definition Classes
    IterableOnceOps
  111. def forall(p: (JsValue) => Boolean): Boolean
    Definition Classes
    JsArray → IterableOnceOps
  112. def foreach[U](p: (JsValue) => U): Unit
    Definition Classes
    JsArray → IterableOnceOps
  113. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JsArray toStringFormat[JsArray] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  114. def fromSpecific(coll: IterableOnce[JsValue]): Iterable[JsValue]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  115. def get(key: String): Option[JsValue]
    Definition Classes
    JsValue
  116. def getBytes(): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  117. def getBytes(arg0: Charset): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  118. def getBytes(arg0: String): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
    Annotations
    @throws(classOf[java.io.UnsupportedEncodingException])
  119. def getChars(arg0: Int, arg1: Int, arg2: Array[Char], arg3: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  120. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  121. def getEra(): Era
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  122. def getNanos(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  123. def getOrElse[B1 >: B](or: => B1): B1
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  124. def groupBy[K](f: (JsValue) => K): Map[K, Iterable[JsValue]]
    Definition Classes
    IterableOps
  125. def groupMap[K, B](key: (JsValue) => K)(f: (JsValue) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  126. def groupMapReduce[K, B](key: (JsValue) => K)(f: (JsValue) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  127. def grouped(size: Int): Iterator[Iterable[JsValue]]
    Definition Classes
    IterableOps
  128. def head: JsValue
    Definition Classes
    IterableOps
  129. def headOption: Option[JsValue]
    Definition Classes
    IterableOps
  130. def indexOf(arg0: String, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  131. def indexOf(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  132. def indexOf(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  133. def indexOf(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  134. def init: Iterable[JsValue]
    Definition Classes
    IterableOps
  135. def inits: Iterator[Iterable[JsValue]]
    Definition Classes
    IterableOps
  136. def insertAll(idx: Int, seq: Iterable[JsValue]): Unit

    Inserts new elements at the index n.

    Inserts new elements at the index n. Opposed to method update, this method will not replace an element with a new one. Instead, it will insert a new element at index n.

    idx

    the index where a new element will be inserted.

    seq

    the iterable object providing all elements to insert.

  137. def intValue(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  138. def intValueExact(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  139. def intern(): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
    Annotations
    @native()
  140. def isAfter(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  141. def isAfter(arg0: LocalTime): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  142. def isAfter(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  143. def isBefore(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  144. def isBefore(arg0: LocalTime): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  145. def isBefore(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  146. def isEmpty: Boolean
    Definition Classes
    JsArray → IterableOnceOps
  147. def isEqual(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  148. def isEqual(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  149. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  150. def isLeapYear(): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  151. def isLeft: Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Right → Either
  152. def isRight: Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Right → Either
  153. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  154. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  155. def iterator: Iterator[JsValue]
    Definition Classes
    JsArray → IterableOnce
  156. def joinLeft[A1 >: A, B1 >: B, C](implicit ev: <:<[A1, Either[C, B1]]): Either[C, B1]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  157. def joinRight[A1 >: A, B1 >: B, C](implicit ev: <:<[B1, Either[A1, C]]): Either[A1, C]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  158. def knownSize: Int
    Definition Classes
    JsArray → IterableOnce
  159. def last: JsValue
    Definition Classes
    IterableOps
  160. def lastIndexOf(arg0: String, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  161. def lastIndexOf(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  162. def lastIndexOf(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  163. def lastIndexOf(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  164. def lastOption: Option[JsValue]
    Definition Classes
    IterableOps
  165. def lazyZip[B](that: Iterable[B]): LazyZip2[JsValue, B, JsArray.this.type]
    Definition Classes
    Iterable
  166. def left: LeftProjection[Nothing, JsArray]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  167. def length: Int
    Implicit
    This member is added by an implicit conversion from JsArray toArray[Byte] performed by method json2ByteArray in smile.json.
    Definition Classes
    Array
  168. def length(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  169. def lengthOfMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  170. def lengthOfYear(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  171. def longValue(): Long
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  172. def longValueExact(): Long
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  173. def map[B](f: (JsValue) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  174. def matches(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  175. def max[B >: JsValue](implicit ord: Ordering[B]): JsValue
    Definition Classes
    IterableOnceOps
  176. def maxBy[B](f: (JsValue) => B)(implicit cmp: Ordering[B]): JsValue
    Definition Classes
    IterableOnceOps
  177. def maxByOption[B](f: (JsValue) => B)(implicit cmp: Ordering[B]): Option[JsValue]
    Definition Classes
    IterableOnceOps
  178. def maxOption[B >: JsValue](implicit ord: Ordering[B]): Option[JsValue]
    Definition Classes
    IterableOnceOps
  179. def min[B >: JsValue](implicit ord: Ordering[B]): JsValue
    Definition Classes
    IterableOnceOps
  180. def minBy[B](f: (JsValue) => B)(implicit cmp: Ordering[B]): JsValue
    Definition Classes
    IterableOnceOps
  181. def minByOption[B](f: (JsValue) => B)(implicit cmp: Ordering[B]): Option[JsValue]
    Definition Classes
    IterableOnceOps
  182. def minOption[B >: JsValue](implicit ord: Ordering[B]): Option[JsValue]
    Definition Classes
    IterableOnceOps
  183. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  184. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  185. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  186. def movePointLeft(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  187. def movePointRight(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  188. def multiply(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  189. def multiply(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  190. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  191. def negate(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  192. def negate(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  193. def newSpecificBuilder: Builder[JsValue, Iterable[JsValue]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  194. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  195. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  196. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  197. def offsetByCodePoints(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  198. def orElse[A1 >: A, B1 >: B](or: => Either[A1, B1]): Either[A1, B1]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  199. def partition(p: (JsValue) => Boolean): (Iterable[JsValue], Iterable[JsValue])
    Definition Classes
    IterableOps
  200. def partitionMap[A1, A2](f: (JsValue) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  201. def plus(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  202. def plus(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  203. def pow(arg0: Int, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  204. def pow(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  205. def precision(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  206. def prettyPrint: String
    Definition Classes
    JsValue
  207. def product[B >: JsValue](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  208. def productElementNames: Iterator[String]
    Definition Classes
    Product
  209. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → TemporalAccessor
  210. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsArray toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime → TemporalAccessor
  211. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate → TemporalAccessor
  212. def reduce[B >: JsValue](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  213. def reduceLeft[B >: JsValue](op: (B, JsValue) => B): B
    Definition Classes
    IterableOnceOps
  214. def reduceLeftOption[B >: JsValue](op: (B, JsValue) => B): Option[B]
    Definition Classes
    IterableOnceOps
  215. def reduceOption[B >: JsValue](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  216. def reduceRight[B >: JsValue](op: (JsValue, B) => B): B
    Definition Classes
    IterableOnceOps
  217. def reduceRightOption[B >: JsValue](op: (JsValue, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  218. def regionMatches(arg0: Boolean, arg1: Int, arg2: String, arg3: Int, arg4: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  219. def regionMatches(arg0: Int, arg1: String, arg2: Int, arg3: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  220. def remainder(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  221. def remainder(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  222. def remove(idx: Int, count: Int): Unit

    Removes the element on a given index position.

    Removes the element on a given index position. It takes time linear in the buffer size.

    idx

    the index which refers to the first element to delete.

    count

    the number of elements to delete

  223. def remove(index: Int): JsValue
    Definition Classes
    JsArrayJsValue
  224. def remove(key: String): Option[JsValue]
    Definition Classes
    JsValue
  225. def replace(arg0: CharSequence, arg1: CharSequence): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  226. def replace(arg0: Char, arg1: Char): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  227. def replaceAll(arg0: String, arg1: String): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  228. def replaceFirst(arg0: String, arg1: String): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  229. def reversed: Iterable[JsValue]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  230. def round(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  231. def scale(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  232. def scaleByPowerOfTen(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  233. def scan[B >: JsValue](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  234. def scanLeft[B](z: B)(op: (B, JsValue) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  235. def scanRight[B](z: B)(op: (JsValue, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  236. def selectDynamic(key: String): JsValue
    Definition Classes
    JsValue
  237. def setNanos(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsArray toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  238. def setScale(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  239. def setScale(arg0: Int, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  240. def setScale(arg0: Int, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  241. def shortValue(): Short
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    Number
  242. def shortValueExact(): Short
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  243. def signum(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  244. def size: Int
    Definition Classes
    JsArray → IterableOnceOps
  245. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  246. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  247. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  248. def slice(from: Int, until: Int): Iterable[JsValue]
    Definition Classes
    IterableOps → IterableOnceOps
  249. def sliding(size: Int, step: Int): Iterator[Iterable[JsValue]]
    Definition Classes
    IterableOps
  250. def sliding(size: Int): Iterator[Iterable[JsValue]]
    Definition Classes
    IterableOps
  251. def span(p: (JsValue) => Boolean): (Iterable[JsValue], Iterable[JsValue])
    Definition Classes
    IterableOps → IterableOnceOps
  252. def split(arg0: String): Array[String]
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  253. def split(arg0: String, arg1: Int): Array[String]
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  254. def splitAt(n: Int): (Iterable[JsValue], Iterable[JsValue])
    Definition Classes
    IterableOps → IterableOnceOps
  255. def startsWith(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  256. def startsWith(arg0: String, arg1: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  257. def stepper[S <: Stepper[_]](implicit shape: StepperShape[JsValue, S]): S
    Definition Classes
    IterableOnce
  258. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding("Override className instead", "2.13.0")
  259. def stripTrailingZeros(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  260. def subSequence(arg0: Int, arg1: Int): CharSequence
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  261. def substring(arg0: Int, arg1: Int): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  262. def substring(arg0: Int): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  263. def subtract(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  264. def subtract(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  265. def sum[B >: JsValue](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  266. def swap: Either[JsArray, Nothing]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  267. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  268. def tail: Iterable[JsValue]
    Definition Classes
    IterableOps
  269. def tails: Iterator[Iterable[JsValue]]
    Definition Classes
    IterableOps
  270. def take(n: Int): Iterable[JsValue]
    Definition Classes
    IterableOps → IterableOnceOps
  271. def takeRight(n: Int): Iterable[JsValue]
    Definition Classes
    IterableOps
  272. def takeWhile(p: (JsValue) => Boolean): Iterable[JsValue]
    Definition Classes
    IterableOps → IterableOnceOps
  273. def tapEach[U](f: (JsValue) => U): Iterable[JsValue]
    Definition Classes
    IterableOps → IterableOnceOps
  274. def to[C1](factory: Factory[JsValue, C1]): C1
    Definition Classes
    IterableOnceOps
  275. def toArray[B >: JsValue](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  276. def toBigInteger(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  277. def toBigIntegerExact(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  278. final def toBuffer[B >: JsValue]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  279. def toCharArray(): Array[Char]
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  280. def toEngineeringString(): String
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  281. def toEpochDay(): Long
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  282. def toEpochSecond(arg0: ZoneOffset): Long
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    ChronoLocalDateTime
  283. def toIndexedSeq: IndexedSeq[JsValue]
    Definition Classes
    IterableOnceOps
  284. def toInstant(arg0: ZoneOffset): Instant
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    ChronoLocalDateTime
  285. final def toIterable: JsArray.this.type
    Definition Classes
    Iterable → IterableOps
  286. def toList: List[JsValue]
    Definition Classes
    IterableOnceOps
  287. def toLocalDate(): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  288. def toLocalDateTime(): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  289. def toLocalTime(): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  290. def toLowerCase(): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  291. def toLowerCase(arg0: Locale): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  292. def toMap[K, V](implicit ev: <:<[JsValue, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  293. def toNanoOfDay(): Long
    Implicit
    This member is added by an implicit conversion from JsArray toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  294. def toOption: Option[JsArray]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  295. def toPlainString(): String
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  296. def toSecondOfDay(): Int
    Implicit
    This member is added by an implicit conversion from JsArray toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  297. def toSeq: Seq[JsValue]
    Definition Classes
    IterableOnceOps
  298. def toSet[B >: JsValue]: Set[B]
    Definition Classes
    IterableOnceOps
  299. def toString(): String
    Definition Classes
    JsArray → Iterable → JsValue → AnyRef → Any
  300. def toTry(implicit ev: <:<[Nothing, Throwable]): Try[JsArray]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
  301. def toUpperCase(): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  302. def toUpperCase(arg0: Locale): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  303. def toVector: Vector[JsValue]
    Definition Classes
    IterableOnceOps
  304. def transpose[B](implicit asIterable: (JsValue) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  305. def trim(): String
    Implicit
    This member is added by an implicit conversion from JsArray toString performed by method json2String in smile.json.
    Definition Classes
    String
  306. def ulp(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  307. def unary_!: Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  308. def unscaledValue(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsArray toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  309. def until(arg0: ChronoLocalDate): Period
    Implicit
    This member is added by an implicit conversion from JsArray toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  310. def unzip[A1, A2](implicit asPair: (JsValue) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  311. def unzip3[A1, A2, A3](implicit asTriple: (JsValue) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  312. def update(index: Int, value: JsValue): JsValue
    Definition Classes
    JsArrayJsValue
  313. def update(key: String, value: JsValue): JsValue
    Definition Classes
    JsValue
  314. def updateDynamic(index: Int)(value: JsValue): JsValue
    Definition Classes
    JsArrayJsValue
  315. def updateDynamic(key: String)(value: JsValue): JsValue
    Definition Classes
    JsValue
  316. val value: JsArray
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Right
  317. def view: View[JsValue]
    Definition Classes
    IterableOps
  318. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  319. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  320. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  321. def withFilter(p: (JsValue) => Boolean): WithFilter[JsValue, Iterable]
    Definition Classes
    IterableOps
  322. def withLeft[A1 >: A]: Either[A1, JsArray]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Right
  323. def zip[B](that: IterableOnce[B]): Iterable[(JsValue, B)]
    Definition Classes
    IterableOps
  324. def zipAll[A1 >: JsValue, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  325. def zipWithIndex: Iterable[(JsValue, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  326. def |(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  327. def ||(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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 JsArray 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:
    (jsArray: Double).!=(x)
    Definition Classes
    Double
  2. def !=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).!=(x)
    Definition Classes
    Double
  3. def !=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).!=(x)
    Definition Classes
    Double
  4. def !=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).!=(x)
    Definition Classes
    Double
  5. def !=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).!=(x)
    Definition Classes
    Double
  6. def !=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).!=(x)
    Definition Classes
    Double
  7. def !=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).!=(x)
    Definition Classes
    Double
  8. def !=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).!=(x)
    Definition Classes
    Long
  9. def !=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).!=(x)
    Definition Classes
    Long
  10. def !=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).!=(x)
    Definition Classes
    Long
  11. def !=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).!=(x)
    Definition Classes
    Long
  12. def !=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).!=(x)
    Definition Classes
    Long
  13. def !=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).!=(x)
    Definition Classes
    Long
  14. def !=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).!=(x)
    Definition Classes
    Long
  15. def !=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).!=(x)
    Definition Classes
    Int
  16. def !=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).!=(x)
    Definition Classes
    Int
  17. def !=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).!=(x)
    Definition Classes
    Int
  18. def !=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).!=(x)
    Definition Classes
    Int
  19. def !=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).!=(x)
    Definition Classes
    Int
  20. def !=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).!=(x)
    Definition Classes
    Int
  21. def !=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).!=(x)
    Definition Classes
    Int
  22. def !=(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Boolean).!=(x)
    Definition Classes
    Boolean
  23. def %(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).%(x)
    Definition Classes
    Double
  24. def %(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).%(x)
    Definition Classes
    Double
  25. def %(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).%(x)
    Definition Classes
    Double
  26. def %(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).%(x)
    Definition Classes
    Double
  27. def %(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).%(x)
    Definition Classes
    Double
  28. def %(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).%(x)
    Definition Classes
    Double
  29. def %(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).%(x)
    Definition Classes
    Double
  30. def %(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).%(x)
    Definition Classes
    Long
  31. def %(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).%(x)
    Definition Classes
    Long
  32. def %(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).%(x)
    Definition Classes
    Long
  33. def %(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).%(x)
    Definition Classes
    Long
  34. def %(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).%(x)
    Definition Classes
    Long
  35. def %(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).%(x)
    Definition Classes
    Long
  36. def %(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).%(x)
    Definition Classes
    Long
  37. def %(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).%(x)
    Definition Classes
    Int
  38. def %(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).%(x)
    Definition Classes
    Int
  39. def %(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).%(x)
    Definition Classes
    Int
  40. def %(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).%(x)
    Definition Classes
    Int
  41. def %(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).%(x)
    Definition Classes
    Int
  42. def %(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).%(x)
    Definition Classes
    Int
  43. def %(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).%(x)
    Definition Classes
    Int
  44. def &(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).&(x)
    Definition Classes
    Long
  45. def &(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).&(x)
    Definition Classes
    Long
  46. def &(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).&(x)
    Definition Classes
    Long
  47. def &(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).&(x)
    Definition Classes
    Long
  48. def &(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).&(x)
    Definition Classes
    Long
  49. def &(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).&(x)
    Definition Classes
    Int
  50. def &(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).&(x)
    Definition Classes
    Int
  51. def &(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).&(x)
    Definition Classes
    Int
  52. def &(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).&(x)
    Definition Classes
    Int
  53. def &(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).&(x)
    Definition Classes
    Int
  54. def *(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).*(x)
    Definition Classes
    Double
  55. def *(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).*(x)
    Definition Classes
    Double
  56. def *(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).*(x)
    Definition Classes
    Double
  57. def *(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).*(x)
    Definition Classes
    Double
  58. def *(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).*(x)
    Definition Classes
    Double
  59. def *(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).*(x)
    Definition Classes
    Double
  60. def *(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).*(x)
    Definition Classes
    Double
  61. def *(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).*(x)
    Definition Classes
    Long
  62. def *(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).*(x)
    Definition Classes
    Long
  63. def *(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).*(x)
    Definition Classes
    Long
  64. def *(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).*(x)
    Definition Classes
    Long
  65. def *(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).*(x)
    Definition Classes
    Long
  66. def *(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).*(x)
    Definition Classes
    Long
  67. def *(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).*(x)
    Definition Classes
    Long
  68. def *(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).*(x)
    Definition Classes
    Int
  69. def *(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).*(x)
    Definition Classes
    Int
  70. def *(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).*(x)
    Definition Classes
    Int
  71. def *(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).*(x)
    Definition Classes
    Int
  72. def *(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).*(x)
    Definition Classes
    Int
  73. def *(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).*(x)
    Definition Classes
    Int
  74. def *(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).*(x)
    Definition Classes
    Int
  75. final def +(arg0: Any): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: String).+(arg0)
    Definition Classes
    String
  76. def +(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).+(x)
    Definition Classes
    Double
  77. def +(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).+(x)
    Definition Classes
    Double
  78. def +(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).+(x)
    Definition Classes
    Double
  79. def +(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).+(x)
    Definition Classes
    Double
  80. def +(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).+(x)
    Definition Classes
    Double
  81. def +(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).+(x)
    Definition Classes
    Double
  82. def +(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).+(x)
    Definition Classes
    Double
  83. def +(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).+(x)
    Definition Classes
    Long
  84. def +(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).+(x)
    Definition Classes
    Long
  85. def +(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).+(x)
    Definition Classes
    Long
  86. def +(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).+(x)
    Definition Classes
    Long
  87. def +(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).+(x)
    Definition Classes
    Long
  88. def +(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).+(x)
    Definition Classes
    Long
  89. def +(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).+(x)
    Definition Classes
    Long
  90. def +(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).+(x)
    Definition Classes
    Int
  91. def +(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).+(x)
    Definition Classes
    Int
  92. def +(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).+(x)
    Definition Classes
    Int
  93. def +(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).+(x)
    Definition Classes
    Int
  94. def +(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).+(x)
    Definition Classes
    Int
  95. def +(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).+(x)
    Definition Classes
    Int
  96. def +(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).+(x)
    Definition Classes
    Int
  97. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from JsArray toany2stringadd[JsArray] 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:
    (jsArray: any2stringadd[JsArray]).+(other)
    Definition Classes
    any2stringadd
  98. def -(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).-(x)
    Definition Classes
    Double
  99. def -(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).-(x)
    Definition Classes
    Double
  100. def -(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).-(x)
    Definition Classes
    Double
  101. def -(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).-(x)
    Definition Classes
    Double
  102. def -(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).-(x)
    Definition Classes
    Double
  103. def -(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).-(x)
    Definition Classes
    Double
  104. def -(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).-(x)
    Definition Classes
    Double
  105. def -(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).-(x)
    Definition Classes
    Long
  106. def -(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).-(x)
    Definition Classes
    Long
  107. def -(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).-(x)
    Definition Classes
    Long
  108. def -(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).-(x)
    Definition Classes
    Long
  109. def -(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).-(x)
    Definition Classes
    Long
  110. def -(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).-(x)
    Definition Classes
    Long
  111. def -(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).-(x)
    Definition Classes
    Long
  112. def -(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).-(x)
    Definition Classes
    Int
  113. def -(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).-(x)
    Definition Classes
    Int
  114. def -(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).-(x)
    Definition Classes
    Int
  115. def -(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).-(x)
    Definition Classes
    Int
  116. def -(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).-(x)
    Definition Classes
    Int
  117. def -(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).-(x)
    Definition Classes
    Int
  118. def -(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).-(x)
    Definition Classes
    Int
  119. def /(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double)./(x)
    Definition Classes
    Double
  120. def /(x: Float): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double)./(x)
    Definition Classes
    Double
  121. def /(x: Long): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double)./(x)
    Definition Classes
    Double
  122. def /(x: Int): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double)./(x)
    Definition Classes
    Double
  123. def /(x: Char): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double)./(x)
    Definition Classes
    Double
  124. def /(x: Short): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double)./(x)
    Definition Classes
    Double
  125. def /(x: Byte): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double)./(x)
    Definition Classes
    Double
  126. def /(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long)./(x)
    Definition Classes
    Long
  127. def /(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long)./(x)
    Definition Classes
    Long
  128. def /(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long)./(x)
    Definition Classes
    Long
  129. def /(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long)./(x)
    Definition Classes
    Long
  130. def /(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long)./(x)
    Definition Classes
    Long
  131. def /(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long)./(x)
    Definition Classes
    Long
  132. def /(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long)./(x)
    Definition Classes
    Long
  133. def /(x: Double): Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int)./(x)
    Definition Classes
    Int
  134. def /(x: Float): Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int)./(x)
    Definition Classes
    Int
  135. def /(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int)./(x)
    Definition Classes
    Int
  136. def /(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int)./(x)
    Definition Classes
    Int
  137. def /(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int)./(x)
    Definition Classes
    Int
  138. def /(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int)./(x)
    Definition Classes
    Int
  139. def /(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int)./(x)
    Definition Classes
    Int
  140. def <(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<(x)
    Definition Classes
    Double
  141. def <(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<(x)
    Definition Classes
    Double
  142. def <(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<(x)
    Definition Classes
    Double
  143. def <(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<(x)
    Definition Classes
    Double
  144. def <(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<(x)
    Definition Classes
    Double
  145. def <(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<(x)
    Definition Classes
    Double
  146. def <(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<(x)
    Definition Classes
    Double
  147. def <(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<(x)
    Definition Classes
    Long
  148. def <(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<(x)
    Definition Classes
    Long
  149. def <(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<(x)
    Definition Classes
    Long
  150. def <(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<(x)
    Definition Classes
    Long
  151. def <(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<(x)
    Definition Classes
    Long
  152. def <(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<(x)
    Definition Classes
    Long
  153. def <(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<(x)
    Definition Classes
    Long
  154. def <(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<(x)
    Definition Classes
    Int
  155. def <(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<(x)
    Definition Classes
    Int
  156. def <(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<(x)
    Definition Classes
    Int
  157. def <(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<(x)
    Definition Classes
    Int
  158. def <(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<(x)
    Definition Classes
    Int
  159. def <(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<(x)
    Definition Classes
    Int
  160. def <(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<(x)
    Definition Classes
    Int
  161. def <<(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<<(x)
    Definition Classes
    Long
  162. def <<(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<<(x)
    Definition Classes
    Long
  163. def <<(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<<(x)
    Definition Classes
    Int
  164. def <=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<=(x)
    Definition Classes
    Double
  165. def <=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<=(x)
    Definition Classes
    Double
  166. def <=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<=(x)
    Definition Classes
    Double
  167. def <=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<=(x)
    Definition Classes
    Double
  168. def <=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<=(x)
    Definition Classes
    Double
  169. def <=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<=(x)
    Definition Classes
    Double
  170. def <=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).<=(x)
    Definition Classes
    Double
  171. def <=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<=(x)
    Definition Classes
    Long
  172. def <=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<=(x)
    Definition Classes
    Long
  173. def <=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<=(x)
    Definition Classes
    Long
  174. def <=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<=(x)
    Definition Classes
    Long
  175. def <=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<=(x)
    Definition Classes
    Long
  176. def <=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<=(x)
    Definition Classes
    Long
  177. def <=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).<=(x)
    Definition Classes
    Long
  178. def <=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<=(x)
    Definition Classes
    Int
  179. def <=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<=(x)
    Definition Classes
    Int
  180. def <=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<=(x)
    Definition Classes
    Int
  181. def <=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<=(x)
    Definition Classes
    Int
  182. def <=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<=(x)
    Definition Classes
    Int
  183. def <=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<=(x)
    Definition Classes
    Int
  184. def <=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).<=(x)
    Definition Classes
    Int
  185. def ==(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).==(x)
    Definition Classes
    Double
  186. def ==(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).==(x)
    Definition Classes
    Double
  187. def ==(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).==(x)
    Definition Classes
    Double
  188. def ==(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).==(x)
    Definition Classes
    Double
  189. def ==(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).==(x)
    Definition Classes
    Double
  190. def ==(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).==(x)
    Definition Classes
    Double
  191. def ==(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).==(x)
    Definition Classes
    Double
  192. def ==(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).==(x)
    Definition Classes
    Long
  193. def ==(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).==(x)
    Definition Classes
    Long
  194. def ==(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).==(x)
    Definition Classes
    Long
  195. def ==(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).==(x)
    Definition Classes
    Long
  196. def ==(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).==(x)
    Definition Classes
    Long
  197. def ==(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).==(x)
    Definition Classes
    Long
  198. def ==(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).==(x)
    Definition Classes
    Long
  199. def ==(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).==(x)
    Definition Classes
    Int
  200. def ==(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).==(x)
    Definition Classes
    Int
  201. def ==(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).==(x)
    Definition Classes
    Int
  202. def ==(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).==(x)
    Definition Classes
    Int
  203. def ==(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).==(x)
    Definition Classes
    Int
  204. def ==(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).==(x)
    Definition Classes
    Int
  205. def ==(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).==(x)
    Definition Classes
    Int
  206. def ==(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Boolean).==(x)
    Definition Classes
    Boolean
  207. def >(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>(x)
    Definition Classes
    Double
  208. def >(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>(x)
    Definition Classes
    Double
  209. def >(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>(x)
    Definition Classes
    Double
  210. def >(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>(x)
    Definition Classes
    Double
  211. def >(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>(x)
    Definition Classes
    Double
  212. def >(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>(x)
    Definition Classes
    Double
  213. def >(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>(x)
    Definition Classes
    Double
  214. def >(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>(x)
    Definition Classes
    Long
  215. def >(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>(x)
    Definition Classes
    Long
  216. def >(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>(x)
    Definition Classes
    Long
  217. def >(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>(x)
    Definition Classes
    Long
  218. def >(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>(x)
    Definition Classes
    Long
  219. def >(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>(x)
    Definition Classes
    Long
  220. def >(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>(x)
    Definition Classes
    Long
  221. def >(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>(x)
    Definition Classes
    Int
  222. def >(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>(x)
    Definition Classes
    Int
  223. def >(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>(x)
    Definition Classes
    Int
  224. def >(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>(x)
    Definition Classes
    Int
  225. def >(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>(x)
    Definition Classes
    Int
  226. def >(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>(x)
    Definition Classes
    Int
  227. def >(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>(x)
    Definition Classes
    Int
  228. def >=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>=(x)
    Definition Classes
    Double
  229. def >=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>=(x)
    Definition Classes
    Double
  230. def >=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>=(x)
    Definition Classes
    Double
  231. def >=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>=(x)
    Definition Classes
    Double
  232. def >=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>=(x)
    Definition Classes
    Double
  233. def >=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>=(x)
    Definition Classes
    Double
  234. def >=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).>=(x)
    Definition Classes
    Double
  235. def >=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>=(x)
    Definition Classes
    Long
  236. def >=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>=(x)
    Definition Classes
    Long
  237. def >=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>=(x)
    Definition Classes
    Long
  238. def >=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>=(x)
    Definition Classes
    Long
  239. def >=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>=(x)
    Definition Classes
    Long
  240. def >=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>=(x)
    Definition Classes
    Long
  241. def >=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>=(x)
    Definition Classes
    Long
  242. def >=(x: Double): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>=(x)
    Definition Classes
    Int
  243. def >=(x: Float): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>=(x)
    Definition Classes
    Int
  244. def >=(x: Long): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>=(x)
    Definition Classes
    Int
  245. def >=(x: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>=(x)
    Definition Classes
    Int
  246. def >=(x: Char): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>=(x)
    Definition Classes
    Int
  247. def >=(x: Short): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>=(x)
    Definition Classes
    Int
  248. def >=(x: Byte): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>=(x)
    Definition Classes
    Int
  249. def >>(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>>(x)
    Definition Classes
    Long
  250. def >>(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>>(x)
    Definition Classes
    Long
  251. def >>(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>>(x)
    Definition Classes
    Int
  252. def >>>(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>>>(x)
    Definition Classes
    Long
  253. def >>>(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).>>>(x)
    Definition Classes
    Long
  254. def >>>(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).>>>(x)
    Definition Classes
    Int
  255. def ^(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).^(x)
    Definition Classes
    Long
  256. def ^(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).^(x)
    Definition Classes
    Long
  257. def ^(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).^(x)
    Definition Classes
    Long
  258. def ^(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).^(x)
    Definition Classes
    Long
  259. def ^(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).^(x)
    Definition Classes
    Long
  260. def ^(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).^(x)
    Definition Classes
    Int
  261. def ^(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).^(x)
    Definition Classes
    Int
  262. def ^(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).^(x)
    Definition Classes
    Int
  263. def ^(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).^(x)
    Definition Classes
    Int
  264. def ^(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).^(x)
    Definition Classes
    Int
  265. def adjustInto(arg0: Temporal): Temporal
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).adjustInto(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → TemporalAdjuster
  266. def adjustInto(arg0: Temporal): Temporal
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).adjustInto(arg0)
    Definition Classes
    LocalTime → TemporalAdjuster
  267. def adjustInto(arg0: Temporal): Temporal
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).adjustInto(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → TemporalAdjuster
  268. def after(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).after(arg0)
    Definition Classes
    Date
  269. def after(arg0: Timestamp): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).after(arg0)
    Definition Classes
    Timestamp
  270. def after(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).after(arg0)
    Definition Classes
    Date
  271. def apply(i: Int): Byte
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Array[Byte]).apply(i)
    Definition Classes
    Array
  272. def atOffset(arg0: ZoneOffset): OffsetDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).atOffset(arg0)
    Definition Classes
    LocalDateTime
  273. def atOffset(arg0: ZoneOffset): OffsetTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).atOffset(arg0)
    Definition Classes
    LocalTime
  274. def before(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).before(arg0)
    Definition Classes
    Date
  275. def before(arg0: Timestamp): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).before(arg0)
    Definition Classes
    Timestamp
  276. def before(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).before(arg0)
    Definition Classes
    Date
  277. def clone(): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Array[Byte]).clone()
    Definition Classes
    Array → AnyRef
  278. def clone(): AnyRef
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).clone()
    Definition Classes
    Date → AnyRef
  279. def clone(): AnyRef
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).clone()
    Definition Classes
    Date → AnyRef
  280. def compareTo(arg0: Date): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).compareTo(arg0)
    Definition Classes
    Date → Comparable
  281. def compareTo(arg0: Date): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).compareTo(arg0)
    Definition Classes
    Timestamp → Date → Comparable
  282. def compareTo(arg0: Timestamp): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).compareTo(arg0)
    Definition Classes
    Timestamp
  283. def concat(arg0: String): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: String).concat(arg0)
    Definition Classes
    String
  284. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: String).equals(arg0)
    Definition Classes
    String → AnyRef → Any
  285. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).equals(arg0)
    Definition Classes
    Date → AnyRef → Any
  286. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).equals(arg0)
    Definition Classes
    Timestamp → Date → AnyRef → Any
  287. def equals(arg0: Timestamp): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).equals(arg0)
    Definition Classes
    Timestamp
  288. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).equals(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → AnyRef → Any
  289. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).equals(arg0)
    Definition Classes
    LocalTime → AnyRef → Any
  290. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).equals(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → AnyRef → Any
  291. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: BigDecimal).equals(arg0)
    Definition Classes
    BigDecimal → AnyRef → Any
  292. def exists(p: (JsArray) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).exists(p)
    Definition Classes
    Either
  293. def flatMap[A1 >: A, B1](f: (JsArray) => Either[A1, B1]): Either[A1, B1]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).flatMap(f)
    Definition Classes
    Either
  294. def flatten[A1 >: A, B1](implicit ev: <:<[JsArray, Either[A1, B1]]): Either[A1, B1]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).flatten(ev)
    Definition Classes
    Either
  295. def fold[C](fa: (Nothing) => C, fb: (JsArray) => C): C
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).fold(fa, fb)
    Definition Classes
    Either
  296. def forall(f: (JsArray) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).forall(f)
    Definition Classes
    Either
  297. def foreach[U](f: (JsArray) => U): Unit
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).foreach(f)
    Definition Classes
    Either
  298. def format(arg0: DateTimeFormatter): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).format(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  299. def format(arg0: DateTimeFormatter): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).format(arg0)
    Definition Classes
    LocalTime
  300. def format(arg0: DateTimeFormatter): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).format(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate
  301. def get(arg0: TemporalField): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).get(arg0)
    Definition Classes
    LocalDateTime → TemporalAccessor
  302. def get(arg0: TemporalField): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).get(arg0)
    Definition Classes
    LocalTime → TemporalAccessor
  303. def get(arg0: TemporalField): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).get(arg0)
    Definition Classes
    LocalDate → TemporalAccessor
  304. def getChronology(): Chronology
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getChronology()
    Definition Classes
    ChronoLocalDateTime
  305. def getChronology(): IsoChronology
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).getChronology()
    Definition Classes
    LocalDate → ChronoLocalDate
  306. def getDayOfMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getDayOfMonth()
    Definition Classes
    LocalDateTime
  307. def getDayOfMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).getDayOfMonth()
    Definition Classes
    LocalDate
  308. def getDayOfWeek(): DayOfWeek
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getDayOfWeek()
    Definition Classes
    LocalDateTime
  309. def getDayOfWeek(): DayOfWeek
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).getDayOfWeek()
    Definition Classes
    LocalDate
  310. def getDayOfYear(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getDayOfYear()
    Definition Classes
    LocalDateTime
  311. def getDayOfYear(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).getDayOfYear()
    Definition Classes
    LocalDate
  312. def getHour(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getHour()
    Definition Classes
    LocalDateTime
  313. def getHour(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).getHour()
    Definition Classes
    LocalTime
  314. def getLong(arg0: TemporalField): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getLong(arg0)
    Definition Classes
    LocalDateTime → TemporalAccessor
  315. def getLong(arg0: TemporalField): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).getLong(arg0)
    Definition Classes
    LocalTime → TemporalAccessor
  316. def getLong(arg0: TemporalField): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).getLong(arg0)
    Definition Classes
    LocalDate → TemporalAccessor
  317. def getMinute(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getMinute()
    Definition Classes
    LocalDateTime
  318. def getMinute(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).getMinute()
    Definition Classes
    LocalTime
  319. def getMonth(): Month
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getMonth()
    Definition Classes
    LocalDateTime
  320. def getMonth(): Month
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).getMonth()
    Definition Classes
    LocalDate
  321. def getMonthValue(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getMonthValue()
    Definition Classes
    LocalDateTime
  322. def getMonthValue(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).getMonthValue()
    Definition Classes
    LocalDate
  323. def getNano(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getNano()
    Definition Classes
    LocalDateTime
  324. def getNano(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).getNano()
    Definition Classes
    LocalTime
  325. def getSecond(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getSecond()
    Definition Classes
    LocalDateTime
  326. def getSecond(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).getSecond()
    Definition Classes
    LocalTime
  327. def getTime(): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).getTime()
    Definition Classes
    Date
  328. def getTime(): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).getTime()
    Definition Classes
    Timestamp → Date
  329. def getYear(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).getYear()
    Definition Classes
    LocalDateTime
  330. def getYear(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).getYear()
    Definition Classes
    LocalDate
  331. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: String).hashCode()
    Definition Classes
    String → AnyRef → Any
  332. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).hashCode()
    Definition Classes
    Date → AnyRef → Any
  333. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).hashCode()
    Definition Classes
    Timestamp → Date → AnyRef → Any
  334. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).hashCode()
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → AnyRef → Any
  335. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).hashCode()
    Definition Classes
    LocalTime → AnyRef → Any
  336. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).hashCode()
    Definition Classes
    LocalDate → ChronoLocalDate → AnyRef → Any
  337. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: BigDecimal).hashCode()
    Definition Classes
    BigDecimal → AnyRef → Any
  338. def isEmpty(): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: String).isEmpty()
    Definition Classes
    String
  339. def isSupported(arg0: TemporalUnit): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).isSupported(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  340. def isSupported(arg0: TemporalField): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).isSupported(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → TemporalAccessor
  341. def isSupported(arg0: TemporalUnit): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).isSupported(arg0)
    Definition Classes
    LocalTime → Temporal
  342. def isSupported(arg0: TemporalField): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).isSupported(arg0)
    Definition Classes
    LocalTime → TemporalAccessor
  343. def isSupported(arg0: TemporalUnit): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).isSupported(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  344. def isSupported(arg0: TemporalField): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).isSupported(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → TemporalAccessor
  345. def map[B1](f: (JsArray) => B1): Either[Nothing, B1]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).map(f)
    Definition Classes
    Either
  346. def max(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: BigDecimal).max(arg0)
    Definition Classes
    BigDecimal
  347. def min(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: BigDecimal).min(arg0)
    Definition Classes
    BigDecimal
  348. def minus(arg0: Long, arg1: TemporalUnit): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minus(arg0, arg1)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  349. def minus(arg0: TemporalAmount): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minus(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  350. def minus(arg0: Long, arg1: TemporalUnit): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).minus(arg0, arg1)
    Definition Classes
    LocalTime → Temporal
  351. def minus(arg0: TemporalAmount): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).minus(arg0)
    Definition Classes
    LocalTime → Temporal
  352. def minus(arg0: Long, arg1: TemporalUnit): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).minus(arg0, arg1)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  353. def minus(arg0: TemporalAmount): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).minus(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  354. def minusDays(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minusDays(arg0)
    Definition Classes
    LocalDateTime
  355. def minusDays(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).minusDays(arg0)
    Definition Classes
    LocalDate
  356. def minusHours(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minusHours(arg0)
    Definition Classes
    LocalDateTime
  357. def minusHours(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).minusHours(arg0)
    Definition Classes
    LocalTime
  358. def minusMinutes(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minusMinutes(arg0)
    Definition Classes
    LocalDateTime
  359. def minusMinutes(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).minusMinutes(arg0)
    Definition Classes
    LocalTime
  360. def minusMonths(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minusMonths(arg0)
    Definition Classes
    LocalDateTime
  361. def minusMonths(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).minusMonths(arg0)
    Definition Classes
    LocalDate
  362. def minusNanos(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minusNanos(arg0)
    Definition Classes
    LocalDateTime
  363. def minusNanos(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).minusNanos(arg0)
    Definition Classes
    LocalTime
  364. def minusSeconds(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minusSeconds(arg0)
    Definition Classes
    LocalDateTime
  365. def minusSeconds(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).minusSeconds(arg0)
    Definition Classes
    LocalTime
  366. def minusWeeks(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minusWeeks(arg0)
    Definition Classes
    LocalDateTime
  367. def minusWeeks(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).minusWeeks(arg0)
    Definition Classes
    LocalDate
  368. def minusYears(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).minusYears(arg0)
    Definition Classes
    LocalDateTime
  369. def minusYears(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).minusYears(arg0)
    Definition Classes
    LocalDate
  370. def plus(arg0: Long, arg1: TemporalUnit): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plus(arg0, arg1)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  371. def plus(arg0: TemporalAmount): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plus(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  372. def plus(arg0: Long, arg1: TemporalUnit): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).plus(arg0, arg1)
    Definition Classes
    LocalTime → Temporal
  373. def plus(arg0: TemporalAmount): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).plus(arg0)
    Definition Classes
    LocalTime → Temporal
  374. def plus(arg0: Long, arg1: TemporalUnit): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).plus(arg0, arg1)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  375. def plus(arg0: TemporalAmount): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).plus(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  376. def plusDays(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plusDays(arg0)
    Definition Classes
    LocalDateTime
  377. def plusDays(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).plusDays(arg0)
    Definition Classes
    LocalDate
  378. def plusHours(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plusHours(arg0)
    Definition Classes
    LocalDateTime
  379. def plusHours(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).plusHours(arg0)
    Definition Classes
    LocalTime
  380. def plusMinutes(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plusMinutes(arg0)
    Definition Classes
    LocalDateTime
  381. def plusMinutes(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).plusMinutes(arg0)
    Definition Classes
    LocalTime
  382. def plusMonths(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plusMonths(arg0)
    Definition Classes
    LocalDateTime
  383. def plusMonths(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).plusMonths(arg0)
    Definition Classes
    LocalDate
  384. def plusNanos(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plusNanos(arg0)
    Definition Classes
    LocalDateTime
  385. def plusNanos(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).plusNanos(arg0)
    Definition Classes
    LocalTime
  386. def plusSeconds(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plusSeconds(arg0)
    Definition Classes
    LocalDateTime
  387. def plusSeconds(arg0: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).plusSeconds(arg0)
    Definition Classes
    LocalTime
  388. def plusWeeks(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plusWeeks(arg0)
    Definition Classes
    LocalDateTime
  389. def plusWeeks(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).plusWeeks(arg0)
    Definition Classes
    LocalDate
  390. def plusYears(arg0: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).plusYears(arg0)
    Definition Classes
    LocalDateTime
  391. def plusYears(arg0: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).plusYears(arg0)
    Definition Classes
    LocalDate
  392. def productElementNames: Iterator[String]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).productElementNames
    Definition Classes
    Product
  393. def range(arg0: TemporalField): ValueRange
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).range(arg0)
    Definition Classes
    LocalDateTime → TemporalAccessor
  394. def range(arg0: TemporalField): ValueRange
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).range(arg0)
    Definition Classes
    LocalTime → TemporalAccessor
  395. def range(arg0: TemporalField): ValueRange
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).range(arg0)
    Definition Classes
    LocalDate → TemporalAccessor
  396. def setTime(arg0: Long): Unit
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).setTime(arg0)
    Definition Classes
    Date
  397. def setTime(arg0: Long): Unit
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).setTime(arg0)
    Definition Classes
    Timestamp → Date
  398. def toByte: Byte
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).toByte
    Definition Classes
    Double
  399. def toByte: Byte
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).toByte
    Definition Classes
    Long
  400. def toByte: Byte
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).toByte
    Definition Classes
    Int
  401. def toChar: Char
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).toChar
    Definition Classes
    Double
  402. def toChar: Char
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).toChar
    Definition Classes
    Long
  403. def toChar: Char
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).toChar
    Definition Classes
    Int
  404. def toDouble: Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).toDouble
    Definition Classes
    Double
  405. def toDouble: Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).toDouble
    Definition Classes
    Long
  406. def toDouble: Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).toDouble
    Definition Classes
    Int
  407. def toFloat: Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).toFloat
    Definition Classes
    Double
  408. def toFloat: Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).toFloat
    Definition Classes
    Long
  409. def toFloat: Float
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).toFloat
    Definition Classes
    Int
  410. def toInstant(): Instant
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).toInstant()
    Definition Classes
    Date
  411. def toInstant(): Instant
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).toInstant()
    Definition Classes
    Timestamp → Date
  412. def toInt: Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).toInt
    Definition Classes
    Double
  413. def toInt: Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).toInt
    Definition Classes
    Long
  414. def toInt: Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).toInt
    Definition Classes
    Int
  415. def toLong: Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).toLong
    Definition Classes
    Double
  416. def toLong: Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).toLong
    Definition Classes
    Long
  417. def toLong: Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).toLong
    Definition Classes
    Int
  418. def toSeq: Seq[JsArray]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: Right[Nothing, JsArray]).toSeq
    Definition Classes
    Either
  419. def toShort: Short
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).toShort
    Definition Classes
    Double
  420. def toShort: Short
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).toShort
    Definition Classes
    Long
  421. def toShort: Short
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).toShort
    Definition Classes
    Int
  422. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: String).toString()
    Definition Classes
    String → CharSequence → AnyRef → Any
  423. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Date).toString()
    Definition Classes
    Date → AnyRef → Any
  424. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Timestamp).toString()
    Definition Classes
    Timestamp → Date → AnyRef → Any
  425. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).toString()
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → AnyRef → Any
  426. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).toString()
    Definition Classes
    LocalTime → AnyRef → Any
  427. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).toString()
    Definition Classes
    LocalDate → ChronoLocalDate → AnyRef → Any
  428. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: BigDecimal).toString()
    Definition Classes
    BigDecimal → AnyRef → Any
  429. def truncatedTo(arg0: TemporalUnit): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).truncatedTo(arg0)
    Definition Classes
    LocalDateTime
  430. def truncatedTo(arg0: TemporalUnit): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).truncatedTo(arg0)
    Definition Classes
    LocalTime
  431. def unary_+: Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).unary_+
    Definition Classes
    Double
  432. def unary_+: Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).unary_+
    Definition Classes
    Long
  433. def unary_+: Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).unary_+
    Definition Classes
    Int
  434. def unary_-: Double
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Double).unary_-
    Definition Classes
    Double
  435. def unary_-: Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).unary_-
    Definition Classes
    Long
  436. def unary_-: Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).unary_-
    Definition Classes
    Int
  437. def unary_~: Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).unary_~
    Definition Classes
    Long
  438. def unary_~: Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).unary_~
    Definition Classes
    Int
  439. def until(arg0: Temporal, arg1: TemporalUnit): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).until(arg0, arg1)
    Definition Classes
    LocalDateTime → Temporal
  440. def until(arg0: Temporal, arg1: TemporalUnit): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).until(arg0, arg1)
    Definition Classes
    LocalTime → Temporal
  441. def until(arg0: Temporal, arg1: TemporalUnit): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).until(arg0, arg1)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  442. def update(i: Int, x: Byte): Unit
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Array[Byte]).update(i, x)
    Definition Classes
    Array
  443. def with(arg0: TemporalField, arg1: Long): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).with(arg0, arg1)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  444. def with(arg0: TemporalAdjuster): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).with(arg0)
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → Temporal
  445. def with(arg0: TemporalField, arg1: Long): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).with(arg0, arg1)
    Definition Classes
    LocalTime → Temporal
  446. def with(arg0: TemporalAdjuster): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).with(arg0)
    Definition Classes
    LocalTime → Temporal
  447. def with(arg0: TemporalField, arg1: Long): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).with(arg0, arg1)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  448. def with(arg0: TemporalAdjuster): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).with(arg0)
    Definition Classes
    LocalDate → ChronoLocalDate → Temporal
  449. def withDayOfMonth(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).withDayOfMonth(arg0)
    Definition Classes
    LocalDateTime
  450. def withDayOfMonth(arg0: Int): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).withDayOfMonth(arg0)
    Definition Classes
    LocalDate
  451. def withDayOfYear(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).withDayOfYear(arg0)
    Definition Classes
    LocalDateTime
  452. def withDayOfYear(arg0: Int): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).withDayOfYear(arg0)
    Definition Classes
    LocalDate
  453. def withHour(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).withHour(arg0)
    Definition Classes
    LocalDateTime
  454. def withHour(arg0: Int): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).withHour(arg0)
    Definition Classes
    LocalTime
  455. def withMinute(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).withMinute(arg0)
    Definition Classes
    LocalDateTime
  456. def withMinute(arg0: Int): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).withMinute(arg0)
    Definition Classes
    LocalTime
  457. def withMonth(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).withMonth(arg0)
    Definition Classes
    LocalDateTime
  458. def withMonth(arg0: Int): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).withMonth(arg0)
    Definition Classes
    LocalDate
  459. def withNano(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).withNano(arg0)
    Definition Classes
    LocalDateTime
  460. def withNano(arg0: Int): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).withNano(arg0)
    Definition Classes
    LocalTime
  461. def withSecond(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).withSecond(arg0)
    Definition Classes
    LocalDateTime
  462. def withSecond(arg0: Int): LocalTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalTime).withSecond(arg0)
    Definition Classes
    LocalTime
  463. def withYear(arg0: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDateTime).withYear(arg0)
    Definition Classes
    LocalDateTime
  464. def withYear(arg0: Int): LocalDate
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: LocalDate).withYear(arg0)
    Definition Classes
    LocalDate
  465. def |(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).|(x)
    Definition Classes
    Long
  466. def |(x: Int): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).|(x)
    Definition Classes
    Long
  467. def |(x: Char): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).|(x)
    Definition Classes
    Long
  468. def |(x: Short): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).|(x)
    Definition Classes
    Long
  469. def |(x: Byte): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Long).|(x)
    Definition Classes
    Long
  470. def |(x: Long): Long
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).|(x)
    Definition Classes
    Int
  471. def |(x: Int): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).|(x)
    Definition Classes
    Int
  472. def |(x: Char): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).|(x)
    Definition Classes
    Int
  473. def |(x: Short): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).|(x)
    Definition Classes
    Int
  474. def |(x: Byte): Int
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: Int).|(x)
    Definition Classes
    Int

Deprecated Value Members

  1. def +(x: String): String
    Implicit
    This member is added by an implicit conversion from JsArray 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:
    (jsArray: 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 JsArray 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:
    (jsArray: 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 JsArray 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:
    (jsArray: 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 ++:[B >: JsValue](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  5. def /:[B](z: B)(op: (B, JsValue) => B): B
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  6. final def /:[B](z: B)(op: (B, JsValue) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  7. def :\[B](z: B)(op: (JsValue, B) => B): B
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  8. final def :\[B](z: B)(op: (JsValue, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

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

  12. def aggregate[B](z: => B)(seqop: (B, JsValue) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  13. def collectFirst[B](f: PartialFunction[JsValue, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  14. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  15. def copyToBuffer(dest: Buffer[JsValue]): Unit
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  16. final def copyToBuffer[B >: JsValue](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  17. def count(f: (JsValue) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  18. def exists(f: (JsValue) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  19. def filter(f: (JsValue) => Boolean): Iterator[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  20. def find(p: (JsValue) => Boolean): Option[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  21. def flatMap[B](f: (JsValue) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  22. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  23. def foldLeft[B](z: B)(op: (B, JsValue) => B): B
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  24. def foldRight[B](z: B)(op: (JsValue, B) => B): B
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  25. def forall(f: (JsValue) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  26. def foreach[U](f: (JsValue) => U): Unit
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

  44. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  45. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  46. def map[B](f: (JsValue) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  47. def max(implicit ord: Ordering[JsValue]): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  48. def maxBy[B](f: (JsValue) => B)(implicit cmp: Ordering[B]): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  49. def min(implicit ord: Ordering[JsValue]): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  50. def minBy[B](f: (JsValue) => B)(implicit cmp: Ordering[B]): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  51. def mkString: String
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  52. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  53. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  54. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  55. def product(implicit num: Numeric[JsValue]): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  56. def reduce(f: (JsValue, JsValue) => JsValue): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  57. def reduceLeft(f: (JsValue, JsValue) => JsValue): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  58. def reduceLeftOption(f: (JsValue, JsValue) => JsValue): Option[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  59. def reduceOption(f: (JsValue, JsValue) => JsValue): Option[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  60. def reduceRight(f: (JsValue, JsValue) => JsValue): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  61. def reduceRightOption(f: (JsValue, JsValue) => JsValue): Option[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  62. final def repr: Iterable[JsValue]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  63. def right: RightProjection[Nothing, JsArray]
    Implicit
    This member is added by an implicit conversion from JsArray toRight[Nothing, JsArray] performed by method jsArrayTopLevel in smile.json.
    Definition Classes
    Either
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Either is now right-biased, use methods directly on Either

  64. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  65. def seq: JsArray.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

  78. def size: Int
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  79. def sum(implicit num: Numeric[JsValue]): JsValue
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  80. def to[C1](factory: Factory[JsValue, C1]): C1
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  81. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  82. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

  85. def toIndexedSeq: IndexedSeq[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  86. final def toIterable: Iterable[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  87. def toIterator: Iterator[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  88. final def toIterator: Iterator[JsValue]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  89. def toList: List[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

  92. def toMap[K, V](implicit ev: <:<[JsValue, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  93. def toSeq: Seq[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  94. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  95. def toStream: Stream[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  96. final def toStream: Stream[JsValue]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  97. final def toTraversable: Traversable[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  98. final def toTraversable: Traversable[JsValue]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  99. def toVector: Vector[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  100. def view(from: Int, until: Int): View[JsValue]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  101. def withFilter(f: (JsValue) => Boolean): Iterator[JsValue]
    Implicit
    This member is added by an implicit conversion from JsArray toIterableOnceExtensionMethods[JsValue] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsArray: IterableOnceExtensionMethods[JsValue]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

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

Inherited from IterableFactoryDefaults[JsValue, Iterable]

Inherited from IterableOps[JsValue, Iterable, Iterable[JsValue]]

Inherited from IterableOnceOps[JsValue, Iterable, Iterable[JsValue]]

Inherited from IterableOnce[JsValue]

Inherited from JsValue

Inherited from Dynamic

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromJsArray to IterableOnceExtensionMethods[JsValue]

Inherited by implicit conversion json2ByteArray fromJsArray to Array[Byte]

Inherited by implicit conversion json2String fromJsArray to String

Inherited by implicit conversion json2Date fromJsArray to Date

Inherited by implicit conversion json2Timestamp fromJsArray to Timestamp

Inherited by implicit conversion json2LocalDateTime fromJsArray to LocalDateTime

Inherited by implicit conversion json2LocalTime fromJsArray to LocalTime

Inherited by implicit conversion json2LocalDate fromJsArray to LocalDate

Inherited by implicit conversion json2BigDecimal fromJsArray to BigDecimal

Inherited by implicit conversion json2Double fromJsArray to Double

Inherited by implicit conversion json2Long fromJsArray to Long

Inherited by implicit conversion json2Int fromJsArray to Int

Inherited by implicit conversion json2Boolean fromJsArray to Boolean

Inherited by implicit conversion jsArrayTopLevel fromJsArray to Right[Nothing, JsArray]

Inherited by implicit conversion any2stringadd fromJsArray to any2stringadd[JsArray]

Inherited by implicit conversion StringFormat fromJsArray to StringFormat[JsArray]

Inherited by implicit conversion Ensuring fromJsArray to Ensuring[JsArray]

Inherited by implicit conversion ArrowAssoc fromJsArray to ArrowAssoc[JsArray]

Ungrouped