Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
roast/S32-list/first-kv.t
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
70 lines (56 sloc)
2.15 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Test; | |
# L<S32::Containers/"List"/"=item first"> | |
plan 21; | |
my @list = 1...10; | |
is-deeply (first { $^a % 2 }, @list, :kv), (0, 1), | |
'first(&, @a, :kv)'; | |
is-deeply (first { $^a % 2 }, 1, 2, 3, 4, 5, 6, 7, 8, :kv), (0,1), | |
'first(&, v1, v2, v3 …, :kv)'; | |
is-deeply @list.first({ $^a == 4}, :kv), (3, 4), '@a.first(&, :kv)'; | |
is-deeply @list.first({ $^a == 11 }, :kv), Nil, | |
'@a.first(&, :kv) [unsuccessful match]'; | |
{ | |
my $count = 0; | |
is-deeply @list.first({ $count++; $^x % 2 }, :kv), (0, 1), | |
'@a.first(&, :kv) search for odd elements'; | |
is $count, 1, 'matcher got only executed once'; | |
} | |
is-deeply @list.first(4..6, :kv), (3, 4), '@a.first(v1..v2, :kv)'; | |
is-deeply @list.first(4^..6, :kv), (4, 5), '@a.first(v1^..v2, :kv)'; | |
{ | |
my @fancy-list = (1, 2, "Hello", 3/4, 4.Num); | |
is-deeply @fancy-list.first(Str, :kv), (2, "Hello"), | |
'@a.first(Str:U, :kv)'; | |
is-deeply @fancy-list.first(Int, :kv), (0, 1), | |
'@a.first(Int:U, :kv)'; | |
is-deeply @fancy-list.first(Rat, :kv), (3, 3/4), | |
'@a.first(Rat:U, :kv)'; | |
} | |
{ | |
my @fancy-list = <Philosopher Goblet Prince>; | |
is-deeply @fancy-list.first(/o/, :kv), (0, 'Philosopher'), | |
'@a.first(/o/, :kv)'; | |
is-deeply @fancy-list.first(/ob/, :kv), (1, 'Goblet'), | |
'@a.first(/ob/, :kv)'; | |
is-deeply @fancy-list.first(/l.*o/, :kv), (0, 'Philosopher'), | |
'@a.first(/l.*o/, :kv)'; | |
} | |
is-deeply <a b c b a>.first('c' | 'b', :kv), (1, 'b'), | |
'List:D.first(Junction:D, :kv)'; | |
is-deeply (first 'c'|'b', <a b c b a>, :kv), (1, 'b'), | |
'first(Junction:D, List:D, :kv)'; | |
{ # Bool handling | |
temp $_ = 42; # avoid `uninitialized` warning | |
throws-like { first $_ == 1, 1,2,3, :kv }, X::Match::Bool, | |
'first(Bool:D, v1, v2, …, :kv)'; | |
throws-like { (1,2,3).first: $_== 1, :kv }, X::Match::Bool, | |
'List:D.first(Bool:D, :kv)'; | |
is-deeply first(Bool, True, False, Int, :kv ), (0, True), | |
'Bool:U as matcher (sub)'; | |
is-deeply (True, False, Int).first(Bool, :kv), (0, True), | |
'Bool:U as matcher (method)'; | |
} | |
# :!kv handling | |
is-deeply @list.first(Int, :!kv), 1, 'is :!kv the same as no attribute'; | |
#vim: ft=perl6 | |
# vim: expandtab shiftwidth=4 |