Skip to main content
Version: 1.0.18

ULayer

ULayer[+ROut] is a type alias for ZLayer[Any, Nothing, ROut], which represents a layer that doesn't require any services as its input, it can't fail, and returns ROut as its output.

type ULayer[+ROut] = ZLayer[Any, Nothing, ROut]