Rafal
07/01/2024, 2:31 PMsomeField: String? , in order to set/modify it I have both someField and nullableSomeField lenses. This won't be a case in Arrow 2.0? If not, why are both lenses are created instead of only the nullable one?Alejandro Serrano.Mena
07/01/2024, 2:46 PMsomeField: Optional<T, String>, but with Arrow 2.0 you'll get someField: Lens<T, String?>Alejandro Serrano.Mena
07/01/2024, 2:47 PMnull value into a non-null one and viceversa, but with 2.x behavior you canRafal
07/01/2024, 2:48 PM