Given/When
The given/when
construct is borrowed from Perl 6 and it's somewhat equivalent with switch/case
from other languages.
case
is used to test an expression for truenesswhen
is used to test a value using the rules of the smartmarch operator
The rules of the smartmarch operator are pretty simple:
Obj ~~ Obj
will always check for equality when both objects have the same type.Obj ~~ Array
will return true ifObj
exists inside the array.Obj ~~ Hash
will return true whenObj
is a key inside the hash.Obj ~~ Regex
will try to match theObj
against the regex and returns true on a successful match.
Last updated