Axiom.SceneManagers.Bsp.Collections.Map.Find C# (CSharp) Method

Find() public method

Given a key, Find will return an IEnumerator that allows you to iterate over all items in the bucket associated with the key.
public Find ( object key ) : IEnumerator
key object Key for look for.
return IEnumerator
        public IEnumerator Find( object key )
        {
            if ( buckets[ key ] == null )
            {
                return null;
            }
            else
            {
                return ( (ArrayList)buckets[ key ] ).GetEnumerator();
            }
        }