We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
undefine
1 parent f71a1de commit f544565Copy full SHA for f544565
doc/Language/routines.pod6
@@ -72,6 +72,18 @@ $supply.tap( -> $v { say "First : $v" });
72
73
See also L<the page for C<emit> methods|/routine/emit>.
74
75
+=head2 X<undefine>
76
+
77
+Defined as:
78
79
+ multi sub undefine(Mu \x)
80
+ multi sub undefine(Array \x)
81
+ multi sub undefine(Hash \x)
82
83
+B<DEPRECATED> in 6.d language version and will be removed in 6.e. For
84
+L<Array> and L<Hash>, equivallent to assigning L<Empty>; for everything else,
85
+equivalent to assigning L<Nil>. This routine is deprecated and you should use
86
+L<Empty>/L<Nil> directly, instead.
87
88
=end pod
89
0 commit comments