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

An immutable date without a time-zone in the ISO-8601 calendar system, often viewed as year-month-day such as 2007-12-03.

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

Instance Constructors

  1. new JsDate(value: LocalDate)

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 JsDate 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 JsDate toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  5. def ->[B](y: B): (JsDate, B)
    Implicit
    This member is added by an implicit conversion from JsDate toArrowAssoc[JsDate] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def <(that: JsDate): Boolean
    Definition Classes
    Ordered
  7. def <=(that: JsDate): Boolean
    Definition Classes
    Ordered
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def >(that: JsDate): Boolean
    Definition Classes
    Ordered
  10. def >=(that: JsDate): Boolean
    Definition Classes
    Ordered
  11. def ^(x: Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toBoolean performed by method json2Boolean in smile.json.
    Definition Classes
    Boolean
  12. def abs(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  13. def abs(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  14. def add(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  15. def add(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  16. def after(arg0: Timestamp): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  17. def after(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
  18. def apply(range: Range): JsArray
    Definition Classes
    JsValue
  19. def apply(start: Int, end: Int, step: Int): JsArray
    Definition Classes
    JsValue
  20. def apply(start: Int, end: Int): JsArray
    Definition Classes
    JsValue
  21. def apply(index: Int): JsValue
    Definition Classes
    JsValue
  22. def apply(key: String): JsValue
    Definition Classes
    JsValue
  23. def applyDynamic(key: String): JsValue
    Definition Classes
    JsValue
  24. def asBoolean: Boolean
    Definition Classes
    JsValue
  25. def asDate: LocalDate
    Definition Classes
    JsDateJsValue
  26. def asDateTime: LocalDateTime
    Definition Classes
    JsValue
  27. def asDecimal: BigDecimal
    Definition Classes
    JsValue
  28. def asDouble: Double

    Converts this date to the Epoch Day.

    Converts this date to the Epoch Day. The Epoch Day count is a simple incrementing count of days where day 0 is 1970-01-01 (ISO).

    Definition Classes
    JsDateJsValue
  29. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  30. def asInt: Int
    Definition Classes
    JsValue
  31. def asLong: Long

    Converts this date to the Epoch Day.

    Converts this date to the Epoch Day. The Epoch Day count is a simple incrementing count of days where day 0 is 1970-01-01 (ISO).

    Definition Classes
    JsDateJsValue
  32. def asTime: LocalTime
    Definition Classes
    JsValue
  33. def asTimestamp: Timestamp
    Definition Classes
    JsValue
  34. def atDate(arg0: LocalDate): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDate toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  35. def atZone(arg0: ZoneId): ZonedDateTime
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  36. def before(arg0: Timestamp): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  37. def before(arg0: Date): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
  38. def byteValue(): Byte
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    Number
  39. def byteValueExact(): Byte
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  40. def charAt(arg0: Int): Char
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  41. def chars(): IntStream
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    CharSequence
  42. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  43. def codePointAt(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  44. def codePointBefore(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  45. def codePointCount(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  46. def codePoints(): IntStream
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    CharSequence
  47. def compactPrint: String
    Definition Classes
    JsValue
  48. def compare(that: JsDate): Int
    Definition Classes
    JsDate → Ordered
  49. def compareTo(that: JsDate): Int
    Definition Classes
    Ordered → Comparable
  50. def compareToIgnoreCase(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  51. def concat(arg0: String): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  52. def contains(arg0: CharSequence): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  53. def contentEquals(arg0: CharSequence): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  54. def contentEquals(arg0: StringBuffer): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  55. def divide(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  56. def divide(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  57. def divide(arg0: BigDecimal, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  58. def divide(arg0: BigDecimal, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  59. def divide(arg0: BigDecimal, arg1: Int, arg2: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  60. def divide(arg0: BigDecimal, arg1: Int, arg2: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  61. def divideAndRemainder(arg0: BigDecimal, arg1: MathContext): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  62. def divideAndRemainder(arg0: BigDecimal): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  63. def divideToIntegralValue(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  64. def divideToIntegralValue(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  65. def doubleValue(): Double
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  66. def endsWith(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  67. def ensuring(cond: (JsDate) => Boolean, msg: => Any): JsDate
    Implicit
    This member is added by an implicit conversion from JsDate toEnsuring[JsDate] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  68. def ensuring(cond: (JsDate) => Boolean): JsDate
    Implicit
    This member is added by an implicit conversion from JsDate toEnsuring[JsDate] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  69. def ensuring(cond: Boolean, msg: => Any): JsDate
    Implicit
    This member is added by an implicit conversion from JsDate toEnsuring[JsDate] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  70. def ensuring(cond: Boolean): JsDate
    Implicit
    This member is added by an implicit conversion from JsDate toEnsuring[JsDate] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  71. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  72. def equals(o: Any): Boolean
    Definition Classes
    JsDate → Equals → AnyRef → Any
  73. def equalsIgnoreCase(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  74. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  75. def floatValue(): Float
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  76. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JsDate toStringFormat[JsDate] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  77. def get(key: String): Option[JsValue]
    Definition Classes
    JsValue
  78. def getBytes(): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  79. def getBytes(arg0: Charset): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  80. def getBytes(arg0: String): Array[Byte]
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
    Annotations
    @throws(classOf[java.io.UnsupportedEncodingException])
  81. def getChars(arg0: Int, arg1: Int, arg2: Array[Char], arg3: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  82. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  83. def getNanos(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  84. def getTime(): Long
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp → Date
  85. def indexOf(arg0: String, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  86. def indexOf(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  87. def indexOf(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  88. def indexOf(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  89. def intValue(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  90. def intValueExact(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  91. def intern(): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
    Annotations
    @native()
  92. def isAfter(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  93. def isAfter(arg0: LocalTime): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  94. def isBefore(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  95. def isBefore(arg0: LocalTime): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  96. def isEmpty(): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  97. def isEqual(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  98. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  99. def lastIndexOf(arg0: String, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  100. def lastIndexOf(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  101. def lastIndexOf(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  102. def lastIndexOf(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  103. def length: Int
    Implicit
    This member is added by an implicit conversion from JsDate toArray[Byte] performed by method json2ByteArray in smile.json.
    Definition Classes
    Array
  104. def length(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  105. def longValue(): Long
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  106. def longValueExact(): Long
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  107. def matches(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  108. def max(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  109. def min(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  110. def movePointLeft(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  111. def movePointRight(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  112. def multiply(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  113. def multiply(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  114. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  115. def negate(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  116. def negate(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  117. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  118. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  119. def offsetByCodePoints(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  120. def plus(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  121. def plus(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  122. def pow(arg0: Int, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  123. def pow(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  124. def precision(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  125. def prettyPrint: String
    Definition Classes
    JsValue
  126. def productElementNames: Iterator[String]
    Definition Classes
    Product
  127. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → TemporalAccessor
  128. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsDate toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime → TemporalAccessor
  129. def regionMatches(arg0: Boolean, arg1: Int, arg2: String, arg3: Int, arg4: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  130. def regionMatches(arg0: Int, arg1: String, arg2: Int, arg3: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  131. def remainder(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  132. def remainder(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  133. def remove(index: Int): JsValue
    Definition Classes
    JsValue
  134. def remove(key: String): Option[JsValue]
    Definition Classes
    JsValue
  135. def replace(arg0: CharSequence, arg1: CharSequence): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  136. def replace(arg0: Char, arg1: Char): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  137. def replaceAll(arg0: String, arg1: String): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  138. def replaceFirst(arg0: String, arg1: String): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  139. def round(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  140. def scale(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  141. def scaleByPowerOfTen(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  142. def selectDynamic(key: String): JsValue
    Definition Classes
    JsValue
  143. def setNanos(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  144. def setScale(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  145. def setScale(arg0: Int, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  146. def setScale(arg0: Int, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  147. def setTime(arg0: Long): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp → Date
  148. def shortValue(): Short
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    Number
  149. def shortValueExact(): Short
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  150. def signum(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  151. def split(arg0: String): Array[String]
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  152. def split(arg0: String, arg1: Int): Array[String]
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  153. def startsWith(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  154. def startsWith(arg0: String, arg1: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  155. def stripTrailingZeros(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  156. def subSequence(arg0: Int, arg1: Int): CharSequence
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  157. def substring(arg0: Int, arg1: Int): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  158. def substring(arg0: Int): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  159. def subtract(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  160. def subtract(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  161. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  162. def toBigInteger(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  163. def toBigIntegerExact(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  164. def toCharArray(): Array[Char]
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  165. def toEngineeringString(): String
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  166. def toEpochSecond(arg0: ZoneOffset): Long
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    ChronoLocalDateTime
  167. def toInstant(): Instant
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp → Date
  168. def toInstant(arg0: ZoneOffset): Instant
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    ChronoLocalDateTime
  169. def toLocalDate(): LocalDate
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  170. def toLocalDateTime(): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  171. def toLocalTime(): LocalTime
    Implicit
    This member is added by an implicit conversion from JsDate toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  172. def toLowerCase(): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  173. def toLowerCase(arg0: Locale): String
    Implicit
    This member is added by an implicit conversion from JsDate toString performed by method json2String in smile.json.
    Definition Classes
    String
  174. def toNanoOfDay(): Long
    Implicit
    This member is added by an implicit conversion from JsDate toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  175. def toPlainString(): String
    Implicit
    This member is added by an implicit conversion from JsDate toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  176. def toSecondOfDay(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  177. def toString(): String

    The output will be in the ISO-8601 format uuuu-MM-dd.

    The output will be in the ISO-8601 format uuuu-MM-dd.

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

Deprecated Value Members

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

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

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

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

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

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

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

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

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

    (Since version ) see corresponding Javadoc for more information.

  8. def getDate(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  9. def getDay(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  10. def getHours(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  11. def getMinutes(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

  13. def getSeconds(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  14. def getTimezoneOffset(): Int
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

  16. def setDate(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  17. def setHours(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  18. def setMinutes(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  19. def setMonth(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  20. def setSeconds(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  21. def setYear(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  22. def toGMTString(): String
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  23. def toLocaleString(): String
    Implicit
    This member is added by an implicit conversion from JsDate toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Date
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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

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

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Ordered[JsDate]

Inherited from Comparable[JsDate]

Inherited from JsValue

Inherited from Dynamic

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion json2ByteArray fromJsDate to Array[Byte]

Inherited by implicit conversion json2String fromJsDate to String

Inherited by implicit conversion json2Date fromJsDate to LocalDate

Inherited by implicit conversion json2Timestamp fromJsDate to Timestamp

Inherited by implicit conversion json2LocalDateTime fromJsDate to LocalDateTime

Inherited by implicit conversion json2LocalTime fromJsDate to LocalTime

Inherited by implicit conversion json2LocalDate fromJsDate to LocalDate

Inherited by implicit conversion json2BigDecimal fromJsDate to BigDecimal

Inherited by implicit conversion json2Double fromJsDate to Double

Inherited by implicit conversion json2Long fromJsDate to Long

Inherited by implicit conversion json2Int fromJsDate to Int

Inherited by implicit conversion json2Boolean fromJsDate to Boolean

Inherited by implicit conversion json2Date fromJsDate to LocalDate

Inherited by implicit conversion orderingToOrdered fromJsDate to Ordered[JsDate]

Inherited by implicit conversion any2stringadd fromJsDate to any2stringadd[JsDate]

Inherited by implicit conversion StringFormat fromJsDate to StringFormat[JsDate]

Inherited by implicit conversion Ensuring fromJsDate to Ensuring[JsDate]

Inherited by implicit conversion ArrowAssoc fromJsDate to ArrowAssoc[JsDate]

Ungrouped