/// <summary> /// Puts an array of type T into this builder at the /// current offset /// </summary> /// <typeparam name="T">The type of the input data </typeparam> /// <param name="x">The array to copy data from</param> public void Put <T>(T[] x) where T : struct { _space = _bb.Put(_space, x); }