Hi all,
I found this thread from a google search.
I too am struggling, as the previous poster, on how to pass the index for a multidimensional associative array to the exists method.
E.g.
logic [31:0] noddy[int][int]; // associative array
//I've tried everything I can think of...
noddy.exists(4,6)
noddy.exists([4][6])
noddy.exists((4)(6)(8))
noddy.exists((4),(6))
noddy.exists([4],[6])
noddy.exists(4)(6)(8)