.MetaModelica.MetaModelica.Dangerous.arrayCreateNoInit

Information

Creates a new array where the elements are *not* initialized!. Any attempt to
   access an uninitialized elements may cause segmentation faults if you're
   lucky, and pretty much anything else if you're not. Do not use unless you will
   immediately fill the whole array with data. The dummy variable is used to fix
   the type of the array.

Interface

impure function arrayCreateNoInit<A>
  input Integer size;
  input A dummy;
  output array<A> arr;
end arrayCreateNoInit;

Generated at 2024-04-19T18:16:02Z by OpenModelicaOpenModelica 1.22.3 using GenerateDoc.mos