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

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ->[B](y: B): (JsBoolean, B)
    Implicit
    This member is added by an implicit conversion from JsBoolean toArrowAssoc[JsBoolean] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  4. def <(that: JsBoolean): Boolean
    Definition Classes
    Ordered
  5. def <=(that: JsBoolean): Boolean
    Definition Classes
    Ordered
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def >(that: JsBoolean): Boolean
    Definition Classes
    Ordered
  8. def >=(that: JsBoolean): Boolean
    Definition Classes
    Ordered
  9. def abs(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  10. def abs(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  11. def add(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  12. def add(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  13. def apply(range: Range): JsArray
    Definition Classes
    JsValue
  14. def apply(start: Int, end: Int, step: Int): JsArray
    Definition Classes
    JsValue
  15. def apply(start: Int, end: Int): JsArray
    Definition Classes
    JsValue
  16. def apply(index: Int): JsValue
    Definition Classes
    JsValue
  17. def apply(key: String): JsValue
    Definition Classes
    JsValue
  18. def applyDynamic(key: String): JsValue
    Definition Classes
    JsValue
  19. def asBoolean: Boolean
    Definition Classes
    JsBooleanJsValue
  20. def asDate: LocalDate
    Definition Classes
    JsValue
  21. def asDateTime: LocalDateTime
    Definition Classes
    JsValue
  22. def asDecimal: BigDecimal
    Definition Classes
    JsValue
  23. def asDouble: Double
    Definition Classes
    JsBooleanJsValue
  24. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  25. def asInt: Int
    Definition Classes
    JsBooleanJsValue
  26. def asLong: Long
    Definition Classes
    JsBooleanJsValue
  27. def asTime: LocalTime
    Definition Classes
    JsValue
  28. def asTimestamp: Timestamp
    Definition Classes
    JsValue
  29. def atDate(arg0: LocalDate): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  30. def atStartOfDay(arg0: ZoneId): ZonedDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  31. def atStartOfDay(): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  32. def atTime(arg0: OffsetTime): OffsetDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  33. def atTime(arg0: Int, arg1: Int, arg2: Int, arg3: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  34. def atTime(arg0: Int, arg1: Int, arg2: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  35. def atTime(arg0: Int, arg1: Int): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate
  36. def atTime(arg0: LocalTime): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  37. def atZone(arg0: ZoneId): ZonedDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  38. def byteValue(): Byte
    Implicit
    This member is added by an implicit conversion from JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    CharSequence
  47. def compactPrint: String
    Definition Classes
    JsValue
  48. def compare(that: JsBoolean): Int
    Definition Classes
    JsBoolean → Ordered
  49. def compareTo(that: JsBoolean): Int
    Definition Classes
    Ordered → Comparable
  50. def compareToIgnoreCase(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  67. def ensuring(cond: (JsBoolean) => Boolean, msg: => Any): JsBoolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toEnsuring[JsBoolean] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  68. def ensuring(cond: (JsBoolean) => Boolean): JsBoolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toEnsuring[JsBoolean] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  69. def ensuring(cond: Boolean, msg: => Any): JsBoolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toEnsuring[JsBoolean] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  70. def ensuring(cond: Boolean): JsBoolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toEnsuring[JsBoolean] 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
    JsBoolean → Equals → AnyRef → Any
  73. def equalsIgnoreCase(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean 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 JsBoolean 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 JsBoolean toStringFormat[JsBoolean] 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 getEra(): Era
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  84. def getNanos(): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  85. def indexOf(arg0: String, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean 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 JsBoolean toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  94. def isAfter(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  95. def isBefore(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  96. def isBefore(arg0: LocalTime): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  97. def isBefore(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  98. def isEmpty(): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  99. def isEqual(arg0: ChronoLocalDateTime[_ <: AnyRef]): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  100. def isEqual(arg0: ChronoLocalDate): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  101. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  102. def isLeapYear(): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  103. def lastIndexOf(arg0: String, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  104. def lastIndexOf(arg0: String): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  105. def lastIndexOf(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  106. def lastIndexOf(arg0: Int): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  107. def length: Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toArray[Byte] performed by method json2ByteArray in smile.json.
    Definition Classes
    Array
  108. def length(): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  109. def lengthOfMonth(): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  110. def lengthOfYear(): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  111. def longValue(): Long
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  112. def longValueExact(): Long
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  113. def matches(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  114. def max(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  115. def min(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  116. def movePointLeft(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  117. def movePointRight(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  118. def multiply(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  119. def multiply(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  120. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  121. def negate(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  122. def negate(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  123. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  124. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  125. def offsetByCodePoints(arg0: Int, arg1: Int): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  126. def plus(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  127. def plus(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  128. def pow(arg0: Int, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  129. def pow(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  130. def precision(): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  131. def prettyPrint: String
    Definition Classes
    JsValue
  132. def productElementNames: Iterator[String]
    Definition Classes
    Product
  133. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime → TemporalAccessor
  134. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime → TemporalAccessor
  135. def query[R <: AnyRef](arg0: TemporalQuery[R]): R
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate → TemporalAccessor
  136. def regionMatches(arg0: Boolean, arg1: Int, arg2: String, arg3: Int, arg4: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  137. def regionMatches(arg0: Int, arg1: String, arg2: Int, arg3: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  138. def remainder(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  139. def remainder(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  140. def remove(index: Int): JsValue
    Definition Classes
    JsValue
  141. def remove(key: String): Option[JsValue]
    Definition Classes
    JsValue
  142. def replace(arg0: CharSequence, arg1: CharSequence): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  143. def replace(arg0: Char, arg1: Char): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  144. def replaceAll(arg0: String, arg1: String): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  145. def replaceFirst(arg0: String, arg1: String): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  146. def round(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  147. def scale(): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  148. def scaleByPowerOfTen(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  149. def selectDynamic(key: String): JsValue
    Definition Classes
    JsValue
  150. def setNanos(arg0: Int): Unit
    Implicit
    This member is added by an implicit conversion from JsBoolean toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  151. def setScale(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  152. def setScale(arg0: Int, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  153. def setScale(arg0: Int, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  154. def shortValue(): Short
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    Number
  155. def shortValueExact(): Short
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  156. def signum(): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  157. def split(arg0: String): Array[String]
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  158. def split(arg0: String, arg1: Int): Array[String]
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  159. def startsWith(arg0: String): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  160. def startsWith(arg0: String, arg1: Int): Boolean
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  161. def stripTrailingZeros(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  162. def subSequence(arg0: Int, arg1: Int): CharSequence
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String → CharSequence
  163. def substring(arg0: Int, arg1: Int): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  164. def substring(arg0: Int): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  165. def subtract(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  166. def subtract(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  167. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  168. def toBigInteger(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  169. def toBigIntegerExact(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  170. def toCharArray(): Array[Char]
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  171. def toEngineeringString(): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  172. def toEpochDay(): Long
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  173. def toEpochSecond(arg0: ZoneOffset): Long
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    ChronoLocalDateTime
  174. def toInstant(arg0: ZoneOffset): Instant
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    ChronoLocalDateTime
  175. def toLocalDate(): LocalDate
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  176. def toLocalDateTime(): LocalDateTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toTimestamp performed by method json2Timestamp in smile.json.
    Definition Classes
    Timestamp
  177. def toLocalTime(): LocalTime
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDateTime performed by method json2LocalDateTime in smile.json.
    Definition Classes
    LocalDateTime → ChronoLocalDateTime
  178. def toLowerCase(): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  179. def toLowerCase(arg0: Locale): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  180. def toNanoOfDay(): Long
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  181. def toPlainString(): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  182. def toSecondOfDay(): Int
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalTime performed by method json2LocalTime in smile.json.
    Definition Classes
    LocalTime
  183. def toString(): String
    Definition Classes
    JsBooleanJsValue → AnyRef → Any
  184. def toUpperCase(): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  185. def toUpperCase(arg0: Locale): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  186. def trim(): String
    Implicit
    This member is added by an implicit conversion from JsBoolean toString performed by method json2String in smile.json.
    Definition Classes
    String
  187. def ulp(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  188. def unscaledValue(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsBoolean toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  189. def until(arg0: ChronoLocalDate): Period
    Implicit
    This member is added by an implicit conversion from JsBoolean toLocalDate performed by method json2LocalDate in smile.json.
    Definition Classes
    LocalDate → ChronoLocalDate
  190. def update(index: Int, value: JsValue): JsValue
    Definition Classes
    JsValue
  191. def update(key: String, value: JsValue): JsValue
    Definition Classes
    JsValue
  192. def updateDynamic(index: Int)(value: JsValue): JsValue
    Definition Classes
    JsValue
  193. def updateDynamic(key: String)(value: JsValue): JsValue
    Definition Classes
    JsValue
  194. val value: Boolean
  195. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  196. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  197. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Shadowed Implicit Value Members

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

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

    (Since version ) see corresponding Javadoc for more information.

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

Inherited from Comparable[JsBoolean]

Inherited from JsValue

Inherited from Dynamic

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion json2ByteArray fromJsBoolean to Array[Byte]

Inherited by implicit conversion json2String fromJsBoolean to String

Inherited by implicit conversion json2Date fromJsBoolean to Date

Inherited by implicit conversion json2Timestamp fromJsBoolean to Timestamp

Inherited by implicit conversion json2LocalDateTime fromJsBoolean to LocalDateTime

Inherited by implicit conversion json2LocalTime fromJsBoolean to LocalTime

Inherited by implicit conversion json2LocalDate fromJsBoolean to LocalDate

Inherited by implicit conversion json2BigDecimal fromJsBoolean to BigDecimal

Inherited by implicit conversion json2Double fromJsBoolean to Double

Inherited by implicit conversion json2Long fromJsBoolean to Long

Inherited by implicit conversion json2Int fromJsBoolean to Int

Inherited by implicit conversion json2Boolean fromJsBoolean to Boolean

Inherited by implicit conversion json2Boolean fromJsBoolean to Boolean

Inherited by implicit conversion orderingToOrdered fromJsBoolean to Ordered[JsBoolean]

Inherited by implicit conversion any2stringadd fromJsBoolean to any2stringadd[JsBoolean]

Inherited by implicit conversion StringFormat fromJsBoolean to StringFormat[JsBoolean]

Inherited by implicit conversion Ensuring fromJsBoolean to Ensuring[JsBoolean]

Inherited by implicit conversion ArrowAssoc fromJsBoolean to ArrowAssoc[JsBoolean]

Ungrouped