get_or_create_data_point_by_idx method

get_or_create_data_point_by_idx

If collection already contains data point with index index then returns this data point. If collection doesn’t contains data point with index index ==N (when number of data points in this collection is less or equal then N) then adds deficient data points and returns last (which has requested index). For example, collection indexes are {0, 1, 2}, and requested index is 5. Then method adds deficient data points: {0, 1, 2, 3, 4, 5}. And returns data point with index 5.

Returns

Returns data point with requested index.

def get_or_create_data_point_by_idx(self, index):
    ...
ParameterTypeDescription
indexintIndex.

See Also