Packages

implicit class ServiceDescriptorProtoLens[UpperPB] extends ObjectLens[UpperPB, ServiceDescriptorProto]

Linear Supertypes
ObjectLens[UpperPB, ServiceDescriptorProto], Lens[UpperPB, ServiceDescriptorProto], Serializable, Serializable, AnyRef, scala.Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ServiceDescriptorProtoLens
  2. ObjectLens
  3. Lens
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ServiceDescriptorProtoLens(_l: Lens[UpperPB, ServiceDescriptorProto])

Value Members

  1. def :=(a: ServiceDescriptorProto): Mutation[UpperPB]

    alias to set

    alias to set

    Definition Classes
    Lens
  2. def compose[B](other: Lens[ServiceDescriptorProto, B]): Lens[UpperPB, B]

    Composes two lenses, this enables nesting.

    Composes two lenses, this enables nesting.

    If our field of type A has a sub-field of type B, then given a lens for it (other: Lens[A, B]) we can create a single lens from Container to B.

    Definition Classes
    Lens
  3. def field[A](getter: (ServiceDescriptorProto) ⇒ A)(setter: (ServiceDescriptorProto, A) ⇒ ServiceDescriptorProto): Lens[UpperPB, A]

    Creates a sub-lens

    Creates a sub-lens

    Definition Classes
    ObjectLens
  4. def field[A](lens: Lens[ServiceDescriptorProto, A]): Lens[UpperPB, A]

    Creates a sub-lens

    Creates a sub-lens

    Definition Classes
    ObjectLens
  5. def get(u: UpperPB): ServiceDescriptorProto

    get knows how to extract some field of type A from a container

    get knows how to extract some field of type A from a container

    Definition Classes
    ObjectLensLens
  6. def method: Lens[UpperPB, Seq[MethodDescriptorProto]]
  7. def modify(f: (ServiceDescriptorProto) ⇒ ServiceDescriptorProto): Mutation[UpperPB]

    Represent an update operator (like x.y += 1 )

    Represent an update operator (like x.y += 1 )

    Definition Classes
    Lens
  8. def name: Lens[UpperPB, String]
  9. def optionalName: Lens[UpperPB, scala.Option[String]]
  10. def optionalOptions: Lens[UpperPB, scala.Option[ServiceOptions]]
  11. def options: Lens[UpperPB, ServiceOptions]
  12. def set(c: ServiceDescriptorProto): Mutation[UpperPB]

    Represents an assignment operator.

    Represents an assignment operator.

    Given a value of type A, sets knows how to transform a container such that a is assigned to the field.

    We must have get(set(a)(c)) == a

    Definition Classes
    ObjectLensLens
  13. def setIfDefined(aOpt: scala.Option[ServiceDescriptorProto]): Mutation[UpperPB]

    Optional assignment.

    Optional assignment.

    Given a Some[A], assign the Some's value to the field. Given None, the container is unchanged.

    Definition Classes
    Lens
  14. def update(ms: (Lens[ServiceDescriptorProto, ServiceDescriptorProto]) ⇒ Mutation[ServiceDescriptorProto]*): Mutation[UpperPB]
    Definition Classes
    ObjectLens
  15. def zip[B](other: Lens[UpperPB, B]): Lens[UpperPB, (ServiceDescriptorProto, B)]

    Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.

    Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.

    Definition Classes
    Lens