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

GetBucketEnumerator() public method

Gets an appropriate enumerator for the map, customized to go through each key in the map and return a Pair of the key and an ArrayList of the values associated with it.
public GetBucketEnumerator ( ) : IEnumerator
return IEnumerator
        public IEnumerator GetBucketEnumerator()
        {
            return buckets.Keys.GetEnumerator();
        }
    }