Maybe you could also provide a way to do assertion...
# strikt
s
Maybe you could also provide a way to do assertions in the wrapped value as well, not just a predicate?
To clarify, something similar to this:
Copy code
expectThat(either).isRight {
            get { name }.isEqualTo("Super name")
            get { id }.isNotNull().isGreaterThan(0L)
            get { uuid }.isNotNull().isNotBlank()
}
a
Thanks for the suggestion. I will See what i can do
s
That looks cool, thanks!