intoArrays() public method

creates a generator that produces arrays whose elements are chosen from this generator.
public intoArrays ( ) : Generator
return Generator
コード例 #1
0
ファイル: Generator.php プロジェクト: steos/php-quickcheck
 public static function containerTypes(self $innerType)
 {
     return self::oneOf($innerType->intoArrays(), $innerType->mapsFrom(self::oneOf(self::ints(), self::strings())));
 }