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.
Zero/ZeroLevel/Services/MemoryPools/Collections/IPoolingGrouping.cs

10 lines
255 B

/*https://github.com/sidristij/memory-pools/blob/master/MemoryPools.Collections*/
namespace MemoryPools.Collections
{
public interface IPoolingGrouping<out TKey, out TElement> : IPoolingEnumerable<TElement>
{
TKey Key { get; }
}
}

Powered by TurnKey Linux.