I guess I found a way ``` val productLineLens: Len...
# arrow
n
I guess I found a way
Copy code
val productLineLens: Lens<SalesProductLine, ListK<SalesProduct>> =
        Lens(
                get = { pl -> pl.salesProducts.k() },
                set = { pl: SalesProductLine, products -> pl.copy(salesProducts = products )}
        )