6 kyu

Pimp my Library

Description
Loading description...
Language Features
Fundamentals
  • Please sign in or sign up to leave a comment.
  • FArekkusu Avatar
    src/test/scala/fixture.scala:57: warning: value Stream in package scala is deprecated (since 2.13.0): Use LazyList instead of Stream
          val input = Random.shuffle(Stream.continually(things.toStream).flatten.take(3 + Random.nextInt(10)).toList)
                                     ^
    src/test/scala/fixture.scala:57: warning: method toStream in trait IterableOnceOps is deprecated (since 2.13.0): Use .to(LazyList) instead of .toStream
          val input = Random.shuffle(Stream.continually(things.toStream).flatten.take(3 + Random.nextInt(10)).toList)
    

    Ideally, Scala 3 should be enabled as well.

  • rlloyd2001 Avatar

    This comment has been hidden.