LensInjectorExtractor

Functions

Link copied to clipboard
fun Events.and(next: Events): Events
Link copied to clipboard

Convert the result of a lens extraction to a Result4k type which

Link copied to clipboard
fun (Request) -> Boolean.asRouter(description: String = unavailable.description): Router

Convert any predicate on a request into a router

Link copied to clipboard
Link copied to clipboard
fun HttpHandler.debug(out: PrintStream = System.out, debugStream: Boolean = false): (request: Request) -> Response
Link copied to clipboard
open fun extract(target: IN): OUT

Lens operation to get the value from the target. Synonym for invoke(IN)

Link copied to clipboard
open operator fun <R : IN> get(target: R): OUT

Lens operation to get the value from the target. Synonym for invoke(IN)

Link copied to clipboard
open fun <R : IN> inject(value: OUT, target: R): R

Lens operation to set the value into the target. Synomym for invoke(IN, OUT)

Link copied to clipboard
abstract operator override fun invoke(target: IN): OUT

Lens operation to get the value from the target

abstract operator fun <R : IN> invoke(value: OUT, target: R): R

Lens operation to set the value into the target

Link copied to clipboard
open infix fun <R : IN> of(value: OUT): (R) -> R

Bind this Lens to a value, so we can set it into a target

Link copied to clipboard

Restrict the type that this Lens can extract from

Link copied to clipboard

Restrict the type that this Lens can inject into

Link copied to clipboard
open operator fun <R : IN> set(target: R, value: OUT): R

Lens operation to set the value into the target. Synomym for invoke(IN, OUT)

Link copied to clipboard
fun Events.then(next: Events): (Event) -> Unit
Link copied to clipboard

Convert a synchronous HttpHandler API to mimic AsyncHttpClient