Packages

class Kson extends Cached

Source
kson.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Kson
  2. Cached
  3. StringMap
  4. AnyRef
  5. Any
Implicitly
  1. by richDrxAny
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Kson(unscopedLines: Vector[KsonLine])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Kson toany2stringadd[Kson] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++(that: Kson): Kson
  5. def ->[B](y: B): (Kson, B)
    Implicit
    This member is added by an implicit conversion from Kson toArrowAssoc[Kson] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def /(symbol: Symbol): Scoped
    Definition Classes
    StringMap
  7. def /(name: String): Scoped
    Definition Classes
    StringMap
  8. def <<(shift: Int): Kson
  9. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def >>(shift: Int): Kson
  11. final def apply[T](key: String)(implicit parser: Parsable[T]): T

    dangerous option, either use modadic or defaults with getOrElse

    dangerous option, either use modadic or defaults with getOrElse

    Definition Classes
    StringMap
  12. def applyIf(t: Boolean, f: (Kson) => Kson): Kson
    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  13. def applyIf(t: (Kson) => Boolean)(f: (Kson) => Kson): Kson

    better chaining for types

    better chaining for types

    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  14. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  16. final def contains(key: String): Boolean
    Definition Classes
    StringMap
  17. def elementOf(xs: Set[Kson]): Boolean
    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  18. def ensuring(cond: (Kson) => Boolean, msg: => Any): Kson
    Implicit
    This member is added by an implicit conversion from Kson toEnsuring[Kson] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: (Kson) => Boolean): Kson
    Implicit
    This member is added by an implicit conversion from Kson toEnsuring[Kson] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean, msg: => Any): Kson
    Implicit
    This member is added by an implicit conversion from Kson toEnsuring[Kson] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean): Kson
    Implicit
    This member is added by an implicit conversion from Kson toEnsuring[Kson] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  24. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  25. lazy val forest: Forest[MTree[KsonLine]]
  26. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Kson toStringFormat[Kson] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. final def get[T](key: String)(implicit parser: Parsable[T]): Option[T]

    get a key while parsing it via to a viable type inference value and caching it as so

    get a key while parsing it via to a viable type inference value and caching it as so

    Definition Classes
    CachedStringMap
  28. def get[A, B, C, D](keyA: String, keyB: String, keyC: String, keyD: String)(implicit parserA: Parsable[A], parserB: Parsable[B], parserC: Parsable[C], parserD: Parsable[D]): Option[(A, B, C, D)]
    Definition Classes
    StringMap
  29. def get[A, B, C](keyA: String, keyB: String, keyC: String)(implicit parserA: Parsable[A], parserB: Parsable[B], parserC: Parsable[C]): Option[(A, B, C)]
    Definition Classes
    StringMap
  30. def get[A, B](keyA: String, keyB: String)(implicit parserA: Parsable[A], parserB: Parsable[B]): Option[(A, B)]
    Definition Classes
    StringMap
  31. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  32. final def getOrElse[T](key: String, default: T)(implicit parser: Parsable[T]): T
    Definition Classes
    StringMap
  33. final def getString(key: String): Option[String]

    specialized get method for strings so parsing is not required (this also provides a cache mechanism without type encoding)

    specialized get method for strings so parsing is not required (this also provides a cache mechanism without type encoding)

    Definition Classes
    CachedStringMap
  34. def getStringNoCache(key: String): Option[String]
    Definition Classes
    KsonCached
  35. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  36. def interpolate(s: String): String
  37. lazy val interpolated: Kson
  38. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  39. lazy val keys: List[String]

    list of the available keys (the sort order provides listing features)

    list of the available keys (the sort order provides listing features)

    Definition Classes
    KsonStringMap
  40. lazy val lines: List[KsonLine]
  41. def mergeWith(that: StringMap): StringMap
    Definition Classes
    StringMap
  42. lazy val merged: Map[String, String]
  43. def mkPath(keys: Seq[String]): String

    default as a path separator of '.' but this is configurable (over-ridable)

    default as a path separator of '.' but this is configurable (over-ridable)

    Definition Classes
    StringMap
  44. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  45. def noneIf(f: (Kson) => Boolean): Option[Kson]
    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  46. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  47. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  48. def optionIf(f: (Kson) => Boolean): Option[Kson]

    optionally wrap an object

    optionally wrap an object

    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  49. def preApply[B](f: (Kson) => B): B

    a preApply f => f(a)

    a preApply f => f(a)

    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  50. def sideEffect(f: (Kson) => Unit): Kson

    side effect filter

    side effect filter

    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  51. def someIf(f: (Kson) => Boolean): Option[Kson]
    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  52. final def split[T](key: String, sep: String)(implicit parser: Parsable[T]): Vector[T]

    split

    split

    Definition Classes
    CachedStringMap
  53. final def split[T](key: String)(implicit parser: Parsable[T]): Vector[T]
    Definition Classes
    CachedStringMap
  54. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  55. val thisAny: Kson
    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  56. def toByteArray: Array[Byte]
  57. def toList: List[(String, String)]
    Definition Classes
    StringMap
  58. final def toMap: Map[String, String]
    Definition Classes
    StringMap
  59. def toString(): String
    Definition Classes
    Kson → AnyRef → Any
  60. val unscopedLines: Vector[KsonLine]
  61. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  62. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  63. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def ?>(f: (Kson) => Boolean): Option[Kson]

    alias for option if

    alias for option if

    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to many symbols are hard to undertand

  2. def mkPath(parent: String, child: String): String
    Definition Classes
    StringMap
    Annotations
    @deprecated
    Deprecated

    (Since version dj) use mkPath with a list of Keys instead

  3. def |>[B](f: (Kson) => B): B
    Implicit
    This member is added by an implicit conversion from Kson toDrxAny[Kson] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) use preApply if you must (symbols are concise without concision)

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

Inherited from StringMap

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion richDrxAny fromKson to DrxAny[Kson]

Inherited by implicit conversion any2stringadd fromKson to any2stringadd[Kson]

Inherited by implicit conversion StringFormat fromKson to StringFormat[Kson]

Inherited by implicit conversion Ensuring fromKson to Ensuring[Kson]

Inherited by implicit conversion ArrowAssoc fromKson to ArrowAssoc[Kson]

Ungrouped