We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f6c1e0 commit d27c421Copy full SHA for d27c421
RBush/ISpatialDatabase.cs
@@ -21,7 +21,8 @@ public interface ISpatialDatabase<T> : ISpatialIndex<T>
21
/// <param name="item">
22
/// The object to be removed from the <see cref="ISpatialDatabase{T}"/>.
23
/// </param>
24
- void Delete(T item);
+ /// <returns><see langword="bool" /> indicating whether the item was removed.</returns>
25
+ bool Delete(T item);
26
27
/// <summary>
28
/// Removes all elements from the <see cref="ISpatialDatabase{T}"/>.
0 commit comments