object ProjectionExpression extends ProjectionExpressionLowPriorityImplicits0

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProjectionExpression
  2. ProjectionExpressionLowPriorityImplicits0
  3. ProjectionExpressionLowPriorityImplicits1
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Meta(opticType: OpticType) extends Product with Serializable
  2. sealed trait OpticType extends AnyRef
  3. implicit class ProjectionExpressionSyntax[From] extends AnyRef
  4. abstract type Unknown
  5. type Untyped = ProjectionExpression[_, _]
  6. implicit class ProjectionExpressionSyntax0[From, To] extends AnyRef
  7. implicit class ProjectionExpressionSyntax1[From, To] extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def $(s: String): ProjectionExpression[Any, Unknown]

    Unsafe version of parse that throws an IllegalStateException rather than returning an Either.

    Unsafe version of parse that throws an IllegalStateException rather than returning an Either. Note all path elements are substituted automatically using the ExpressionAttributeNames facility. The underscore "_" and hypen "-" are allowed in the name without any escaping. Any other special characters must be escaped with backticks as the first and last characters.

    Examples:

    $("foo")            // simple map element
    $("foo.bar[9].baz") // array element with nested access
    $("`foo.bar`")      // simple map element with a dot in the name
    $("foo_bar")        // simple map element
    $("foo-bar")        // simple map element
    See also

    parse

  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def accessors[A](implicit s: Schema[A]): Accessors[(builder)#Lens, (builder)#Prism, (builder)#Traversal]
  6. def apply(name: String): MapElement[Any, Nothing]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val builder: AccessorBuilder { ... /* 3 definitions in type refinement */ }
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. def parse(s: String): Either[String, ProjectionExpression[Unknown, Unknown]]

    Parses a string into an ProjectionExpression Note all path elements are substituted automatically using the ExpressionAttributeNames facility.

    Parses a string into an ProjectionExpression Note all path elements are substituted automatically using the ExpressionAttributeNames facility. The underscore "_" and hypen "-" are allowed in the name without any escaping. Any other special characters must be escaped with backticks as the first and last characters. eg

    parse("foo.bar[9].baz"")
    // Right(MapElement(ListElement(MapElement(Root(bar),baz),9),baz))
    parse(fo$$o.ba$$r[9].ba$$z)
    // Left("error with fo$$o,error with ba$$r[9],error with ba$$z")
    s

    Projection expression as a string

    returns

    either a Right of ProjectionExpression if successful, else a list of errors in a string

  20. val regexDotOutsideBackticks: Regex
  21. def some[A]: ProjectionExpression[Option[A], A]
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  27. object OpticType

Inherited from AnyRef

Inherited from Any

Ungrouped