Im new to Perl from a php background.
Now, as you know PHP has approximately 5 billion and 1 built in functions to do literally everything.
Approximately 4 billion of them are ways of dealing with arrays.
I've been crawling through perl documentation, and I can't find a perl equivalent to PHP's count($array) function which returns how many items there are in an array.
(I know how to iterate through the array and count that way, I was hoping for a built in function.)