Lines Matching full:each
17 # Some of these tests are (effectively) duplicated in each.t
34 @temp = each %comma;
35 is_deeply (\@comma, \@temp, 'first each from comma hash');
36 @temp = each %comma;
37 is_deeply ([], \@temp, 'last each from comma hash');
52 @temp = each %temp;
53 is_deeply (\@temp, \@temp, 'first each from copy of comma hash');
54 @temp = each %temp;
55 is_deeply ([], \@temp, 'last each from copy of comma hash');
75 @temp = each %arrow;
76 is_deeply (\@arrow, \@temp, 'first each from arrow hash');
77 @temp = each %arrow;
78 is_deeply ([], \@temp, 'last each from arrow hash');
93 @temp = each %temp;
94 is_deeply (\@temp, \@temp, 'first each from copy of arrow hash');
95 @temp = each %temp;
96 is_deeply ([], \@temp, 'last each from copy of arrow hash');
207 @temp = each %utf8c;
208 is_deeply (\@utf8c, \@temp, 'first each from utf8 comma hash');
209 @temp = each %utf8c;
210 is_deeply ([], \@temp, 'last each from utf8 comma hash');
226 @temp = each %temp;
227 is_deeply (\@temp, \@temp, 'first each from copy of utf8 comma hash');
228 @temp = each %temp;
229 is_deeply ([], \@temp, 'last each from copy of utf8 comma hash');
250 @temp = each %utf8a;
251 is_deeply (\@utf8a, \@temp, 'first each from utf8 arrow hash');
252 @temp = each %utf8a;
253 is_deeply ([], \@temp, 'last each from utf8 arrow hash');
269 @temp = each %temp;
270 is_deeply (\@temp, \@temp, 'first each from copy of utf8 arrow hash');
271 @temp = each %temp;
272 is_deeply ([], \@temp, 'last each from copy of utf8 arrow hash');