All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hedgehog.extra.String.scala Maven / Gradle / Ivy

There is a newer version: 0.11.0
Show newest version
package hedgehog.extra

import hedgehog.Range
import hedgehog.core.GenT

trait StringOps {

  /**
   * Generates a string using 'Range' to determine the length.
   */
  def string(gen: GenT[Char], range: Range[Int]): GenT[String] =
    gen.list(range).map(_.mkString)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy