I am currently porting code to scala 2.13 and am not able to get rid of deprecation warnings concerning Stream (replaced by LazyList) because of it's use in the interface of Shrink.
Is there a way to do so? A second apply method in Shrink would be handy:
def apply[T](s: T => LazyList[T]): Shrink[T] = ???
Or am I missing something?