πŸ“˜ Prefix operator ^ in Perl 6

^ is a range-creating operator or the so-called upto operator. It creates a range (which is an object of the Range type) from 0 up to the given value (not including it). .print for ^5; # 01234 This code is equivalent to the following, where both ends of the range are explicitly specified: .print for … Continue reading “πŸ“˜ Prefix operator ^ in Perl 6”

πŸ“˜ Method postfix operator . in Perl 6

There are a few syntactical elements in Perl 6, which start with a dot. These operators might look like a postfix operator, but they all are the forms of the calling a method on an object. Unlike Perl 5, the dot operator does not do any string concatenation. .method calls a method on a variable. … Continue reading “πŸ“˜ Method postfix operator . in Perl 6”

πŸ“˜ Prefix operator ~ in Perl 6

~ casts an object to a string. Note that we are now talking about the prefix or a unary operator. If the tilde is used as an infix (see later in this chapter about what infixes are), it works as a string concatenating operator, but it still deals with strings. my Str $a = ~42; … Continue reading “πŸ“˜ Prefix operator ~ in Perl 6”

πŸ“˜ Prefix operator | in Perl 6

| flattens the compound objects into a list. For example, this operator should be used when you pass a list to a subroutine, which expects a list of scalars: sub sum($a, $b) { Β Β Β  $a + $b }Β  my @data = (10, 20); say sum(|@data); # 30 Without the | operator, the compiler will report … Continue reading “πŸ“˜ Prefix operator | in Perl 6”

πŸ“˜ Prefix operator let in Perl 6

let is a prefix operator, which is similar to temp, but works correctly with exceptions. The previous value of the variable will be restored if the scope was left because of the exception. my $var = ‘a’; try { Β Β Β  let $var = ‘b’; Β Β Β  die; } say $var; # a With a die, this … Continue reading “πŸ“˜ Prefix operator let in Perl 6”

πŸ“˜ Postfix operator - - in Perl 6

- - is a postfix decrement. Both postfix and prefix operators magically know how to deal with numbers in filenames. my $filename = ‘file01.txt’; for 1..10 { Β Β Β  say $filename++; } This example prints the list of the filenames with incrementing numbers: file01.txt, file02.txt, … file10.txt.

πŸ“˜ Method postfix operator .^ in Perl 6

.^method calls a method on the object’s metaobject. A metaobject is an instance of the HOW class and contains some additional information about the object. The following two operations, applied to the $i variable, are equivalent and print the list of the methods available for the Int variables. my Int $i; say $i.^methods(); say $i.HOW.methods($i);

πŸ“˜ Infix operators in Perl 6

Infix operators are placed in a programme between two operands. The majority of the infix operators are binary, and there is a single ternary operator, which expects three operands. The simplest example of the binary operator is an addition operator +. On the right and left sides it expects two values, for example, two variables: … Continue reading “πŸ“˜ Infix operators in Perl 6”

πŸ“˜ Universal comparison operator === in Perl 6

=== returns a True value if both operands are the same value. Otherwise, it returns False. This operator is also known as the value identity operator. class I { }Β  # Three different instances my $i = I.new; my $ii = I.new; my $iii = I.new;Β  my @a = ($i, $ii, $iii); for @a -> … Continue reading “πŸ“˜ Universal comparison operator === in Perl 6”

πŸ“˜ Method postfix operator .= in Perl 6

.=method is a mutating call of the method on an object. The call $x.=method does the same as the more verbose assignment $x = $x.method. In the following example, the $o container initially holds an object of the C class, but after $o.=m(), the value will be replaced with an instance of the D class. … Continue reading “πŸ“˜ Method postfix operator .= in Perl 6”