IEEE Std 1800™-2023: 7.12.5 Array mapping method

Is map() not supported by any of the EDA tools? I tried on all available simulators, but it gives compile errors.

module tb;
  
  class A;
    int arr[] = {1,2,3,4,5,6};
    
    function void print();    
      arr = arr.map() with (item + 1'b1);
      $display("%0p", arr);
    endfunction
  endclass
  
  initial begin
    
    A a = new();
    a.print(); 
    
  end
  
endmodule

Questa is now supporting it in the 2025 release.