/// <summary>
 /// Deletes the documents at the specified indices
 /// </summary>
 /// <returns><c>true</c>, if the documents at the indices were deleted, <c>false</c> otherwise.</returns>
 /// <param name="indexPaths">The index paths to delete the documents at</param>
 public virtual bool DeleteDocumentsAtIndexes (NSIndexPath[] indexPaths)
 {
     var documents = indexPaths.Select(DocumentAtIndexPath);
     return DeleteDocumentsAtIndexes(documents, indexPaths);
 }