mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
447 B
12 lines
447 B
/*https://github.com/sidristij/memory-pools/blob/master/MemoryPools.Collections*/
|
|
|
|
namespace MemoryPools.Collections
|
|
{
|
|
public interface IPoolingEnumerator<out T> : IPoolingEnumerator
|
|
{
|
|
// <summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
|
/// <returns>The element in the collection at the current position of the enumerator.</returns>
|
|
new T Current { get; }
|
|
}
|
|
}
|