#include "ReVarPCifArray.h"
unsigned ReVarPCifArray<TYPE>::InsertAt(unsigned p, const TYPE *s, unsigned n);
#include "ReVarPCifArray.h"
#include "CifString.h"
ReVarPCifArray<int> a = new ReVarPCifArray<int>();
a->InsertAt(111);
InsertAt() Inserts the data pointed to by s into the array. Up to n elements are inserted, (truncating if necesary), starting at position p, (counted by zero).
None
Returns number of elements inserted, or 0 if error.
None