Packages

trait Cached extends StringMap

Cached provides a nice way to make a fast lookup and parse inline

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

Abstract Value Members

  1. abstract def getStringNoCache(key: String): Option[String]
  2. abstract def 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
    StringMap

Concrete 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 Cached toany2stringadd[Cached] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Cached, B)
    Implicit
    This member is added by an implicit conversion from Cached toArrowAssoc[Cached] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def /(symbol: Symbol): Scoped
    Definition Classes
    StringMap
  6. def /(name: String): Scoped
    Definition Classes
    StringMap
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. 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
  9. def applyIf(t: Boolean, f: (Cached) => Cached): Cached
    Implicit
    This member is added by an implicit conversion from Cached toDrxAny[Cached] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  10. def applyIf(t: (Cached) => Boolean)(f: (Cached) => Cached): Cached

    better chaining for types

    better chaining for types

    Implicit
    This member is added by an implicit conversion from Cached toDrxAny[Cached] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. final def contains(key: String): Boolean
    Definition Classes
    StringMap
  14. def elementOf(xs: Set[Cached]): Boolean
    Implicit
    This member is added by an implicit conversion from Cached toDrxAny[Cached] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  15. def ensuring(cond: (Cached) => Boolean, msg: => Any): Cached
    Implicit
    This member is added by an implicit conversion from Cached toEnsuring[Cached] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (Cached) => Boolean): Cached
    Implicit
    This member is added by an implicit conversion from Cached toEnsuring[Cached] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: => Any): Cached
    Implicit
    This member is added by an implicit conversion from Cached toEnsuring[Cached] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): Cached
    Implicit
    This member is added by an implicit conversion from Cached toEnsuring[Cached] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  21. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  22. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Cached toStringFormat[Cached] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. 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
  24. 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
  25. 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
  26. def get[A, B](keyA: String, keyB: String)(implicit parserA: Parsable[A], parserB: Parsable[B]): Option[(A, B)]
    Definition Classes
    StringMap
  27. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. final def getOrElse[T](key: String, default: T)(implicit parser: Parsable[T]): T
    Definition Classes
    StringMap
  29. 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
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def mergeWith(that: StringMap): StringMap
    Definition Classes
    StringMap
  33. 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
  34. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. def noneIf(f: (Cached) => Boolean): Option[Cached]
    Implicit
    This member is added by an implicit conversion from Cached toDrxAny[Cached] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. def optionIf(f: (Cached) => Boolean): Option[Cached]

    optionally wrap an object

    optionally wrap an object

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

    a preApply f => f(a)

    a preApply f => f(a)

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

    side effect filter

    side effect filter

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

    split

    split

    Definition Classes
    CachedStringMap
  43. final def split[T](key: String)(implicit parser: Parsable[T]): Vector[T]
    Definition Classes
    CachedStringMap
  44. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  45. val thisAny: Cached
    Implicit
    This member is added by an implicit conversion from Cached toDrxAny[Cached] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  46. def till(maxArg: Cached): Bound[Cached]

    Bound construction since the Range constructor is deprecated

    Bound construction since the Range constructor is deprecated

    Implicit
    This member is added by an implicit conversion from Cached toBoundOps[Cached] performed by method DrxBoundOps in cc.drx.predef.Enrich.This conversion will take place only if an implicit value of type Boundable[Cached] is in scope.
    Definition Classes
    BoundOps
  47. def toList: List[(String, String)]
    Definition Classes
    StringMap
  48. final def toMap: Map[String, String]
    Definition Classes
    StringMap
  49. def toString(): String
    Definition Classes
    AnyRef → Any
  50. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

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

    alias for option if

    alias for option if

    Implicit
    This member is added by an implicit conversion from Cached toDrxAny[Cached] 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: (Cached) => B): B
    Implicit
    This member is added by an implicit conversion from Cached toDrxAny[Cached] 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): (Cached, B)
    Implicit
    This member is added by an implicit conversion from Cached toArrowAssoc[Cached] 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 StringMap

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion richDrxAny fromCached to DrxAny[Cached]

Inherited by implicit conversion DrxBoundOps fromCached to BoundOps[Cached]

Inherited by implicit conversion any2stringadd fromCached to any2stringadd[Cached]

Inherited by implicit conversion StringFormat fromCached to StringFormat[Cached]

Inherited by implicit conversion Ensuring fromCached to Ensuring[Cached]

Inherited by implicit conversion ArrowAssoc fromCached to ArrowAssoc[Cached]

Ungrouped