Playground by Górka Mateusz
Goo.Tools.Pooling.ListOfRecyclable< T > Class Template Referenceabstract
+ Inheritance diagram for Goo.Tools.Pooling.ListOfRecyclable< T >:
+ Collaboration diagram for Goo.Tools.Pooling.ListOfRecyclable< T >:

Public Member Functions

GetRecycled ()
 

Protected Member Functions

abstract bool IsRecycled (T o)
 

Member Function Documentation

◆ GetRecycled()

T Goo.Tools.Pooling.ListOfRecyclable< T >.GetRecycled ( )
inline
8 {
9 T obj = null;
10 foreach (var o in this)
11 {
12 if (IsRecycled(o))
13 {
14 obj = o;
15 break;
16 }
17 }
18 return obj;
19 }

◆ IsRecycled()

abstract bool Goo.Tools.Pooling.ListOfRecyclable< T >.IsRecycled ( o)
protectedpure virtual

The documentation for this class was generated from the following file: