/// <summary> /// Returns a contiguous, 1-d array that can be used to update the underlying array. If the array /// is contiguous this is a 1-d view of the array. Otherwise it is a copy with UPDATEIFCOPY set so that /// the data will be copied back when the returned array is freed. /// </summary> /// <returns></returns> public ndarray FlatView(object ignored = null) { return(NpyCoreApi.FlatView(arr)); }