Packages

case class Scoped(ctx: StringMap, key: String) extends StringMap with Product with Serializable

scoped to lazily build up a key and provide nice syntax for defaults

Source
stringMap.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scoped
  2. Serializable
  3. Product
  4. Equals
  5. StringMap
  6. AnyRef
  7. 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

Instance Constructors

  1. new Scoped(ctx: StringMap, key: String)

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

    better chaining for types

    better chaining for types

    Implicit
    This member is added by an implicit conversion from Scoped toDrxAny[Scoped] 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. val ctx: StringMap
  15. def elementOf(xs: Set[Scoped]): Boolean
    Implicit
    This member is added by an implicit conversion from Scoped toDrxAny[Scoped] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  16. def ensuring(cond: (Scoped) => Boolean, msg: => Any): Scoped
    Implicit
    This member is added by an implicit conversion from Scoped toEnsuring[Scoped] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (Scoped) => Boolean): Scoped
    Implicit
    This member is added by an implicit conversion from Scoped toEnsuring[Scoped] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: => Any): Scoped
    Implicit
    This member is added by an implicit conversion from Scoped toEnsuring[Scoped] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): Scoped
    Implicit
    This member is added by an implicit conversion from Scoped toEnsuring[Scoped] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  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 Scoped toStringFormat[Scoped] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. def get[T](implicit parser: Parsable[T]): Option[T]
  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. def get[T](key: String)(implicit parser: Parsable[T]): Option[T]
    Definition Classes
    StringMap
  28. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def getOrElse[T](default: T)(implicit parser: Parsable[T]): T
  30. final def getOrElse[T](key: String, default: T)(implicit parser: Parsable[T]): T
    Definition Classes
    StringMap
  31. def getString(subkey: String): Option[String]

    the key get interface to parse as you would like

    the key get interface to parse as you would like

    Definition Classes
    ScopedStringMap
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. val key: String
  34. 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
    ScopedStringMap
  35. def mergeWith(that: StringMap): StringMap
    Definition Classes
    StringMap
  36. 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
  37. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. def noneIf(f: (Scoped) => Boolean): Option[Scoped]
    Implicit
    This member is added by an implicit conversion from Scoped toDrxAny[Scoped] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  39. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. def optionIf(f: (Scoped) => Boolean): Option[Scoped]

    optionally wrap an object

    optionally wrap an object

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

    a preApply f => f(a)

    a preApply f => f(a)

    Implicit
    This member is added by an implicit conversion from Scoped toDrxAny[Scoped] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  43. def productElementNames: Iterator[String]
    Definition Classes
    Product
  44. def sideEffect(f: (Scoped) => Unit): Scoped

    side effect filter

    side effect filter

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

    split

    split

    Definition Classes
    StringMap
  49. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  50. val thisAny: Scoped
    Implicit
    This member is added by an implicit conversion from Scoped toDrxAny[Scoped] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  51. def till(maxArg: Scoped): Bound[Scoped]

    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 Scoped toBoundOps[Scoped] performed by method DrxBoundOps in cc.drx.predef.Enrich.This conversion will take place only if an implicit value of type Boundable[Scoped] is in scope.
    Definition Classes
    BoundOps
  52. def toList: List[(String, String)]
    Definition Classes
    StringMap
  53. final def toMap: Map[String, String]
    Definition Classes
    StringMap
  54. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  55. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  56. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  57. def |[T](default: T)(implicit parser: Parsable[T]): T

    A syntax sugar that coincides nicely with the stringMap key lookup to simultaneously provide a default and implicit value to type inferencing magic

Deprecated Value Members

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

    alias for option if

    alias for option if

    Implicit
    This member is added by an implicit conversion from Scoped toDrxAny[Scoped] 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 as[T](implicit parser: Parsable[T]): T
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.13) dangerous so, insead of this.as[Int] use direct this.get[Int].get

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

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

  4. def |>[B](f: (Scoped) => B): B
    Implicit
    This member is added by an implicit conversion from Scoped toDrxAny[Scoped] 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)

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

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion richDrxAny fromScoped to DrxAny[Scoped]

Inherited by implicit conversion DrxBoundOps fromScoped to BoundOps[Scoped]

Inherited by implicit conversion any2stringadd fromScoped to any2stringadd[Scoped]

Inherited by implicit conversion StringFormat fromScoped to StringFormat[Scoped]

Inherited by implicit conversion Ensuring fromScoped to Ensuring[Scoped]

Inherited by implicit conversion ArrowAssoc fromScoped to ArrowAssoc[Scoped]

Ungrouped