任何人都可以幫助知道如何計數沒有。密鑰中的密碼,在PERL 6?尋找沒有手動循環的東西。如何獲得no的數量。密鑰在perl 6%HASH中?
在此先感謝!
編輯:嘗試以下目前爲止,但沒有運氣。
my %hash = 1 => "one", 2 => <21,22,23>, 3 => "three" ;
my $count = %hash.keys [ makes it a flat list ]
my $count = %hash.count [no such method]
my $count = keys %hash [provides all the keys but not the count]
在Perl 5中,如果您將哈希強制轉換爲標量,您會得到桶。 –