routine x

Documentation for routine x assembled from the following types:

language documentation Operators

From Operators

(Operators) infix x

sub infix:<x>($a$b --> Str:D)

String repetition operator.

Repeats the string $a $b times, if necessary coercing $a to Str and $b Int. Returns an empty string if $b <= 0 . An exception X::Numeric::CannotConvert will be thrown if $b is -Inf or NaN.

say 'ab' x 3;           # OUTPUT: «ababab␤» 
say 42 x 3;             # OUTPUT: «424242␤» 
 
my $a = 'a'.IO;
my $b = 3.5;
say $a x $b;            # OUTPUT: «aaa␤»

List repetition operator

class IO::Special

From IO::Special

(IO::Special) method x

method x(IO::Special:D: --> False)

The 'execute access' file test operator, always returns False.

class IO::Path

From IO::Path

(IO::Path) method x

Defined as:

method x(--> Bool:D)

Returns True if the invocant is a path that exists and is executable. The method will fail with X::IO::DoesNotExist if the path points to a non-existent filesystem entity.