class X::Bind::Slice
class X::Bind::Slice is Exception {}
When you try to bind to an array or hash slice:
my @a; @a[0, 1] := [42];
CATCH { default { put .^name, ': ', .Str } };
# OUTPUT: Ā«X::Bind::Slice: Cannot bind to Array sliceā¤Ā»
and
my %h; %h<a b> := {};
CATCH { default { put .^name, ': ', .Str } };
# OUTPUT: Ā«X::Bind::Slice: Cannot bind to Hash sliceā¤Ā»
you get an exception of type ::Bind::Slice
.
Methods
method type
method type(X::Bind::Slice:D:)
returns the type object of the thing that you tried to slice-bind, for example Array, List or Hash.