I have a queue like this - int egress_port_pid_pri[3][*][*][$]; At the end of test case, I want to check that this array of queues to have size 0 . Can I do that without using 3 for loops.
SystemVerilog mailboxes are created as having either aboundedorunboundedqueue size. Aboundedmailboxcan only store a limited amount of data, and if a process attempts to store more messages into a full mailbox, it will be suspended until there's enough room in the mailbox. However, anunbound...