Jurassic.Library.SparseArray.GetValueNonCached C# (CSharp) Method

GetValueNonCached() private method

private GetValueNonCached ( uint index ) : object
index uint
return object
        private object GetValueNonCached(uint index)
        {
            object[] array = FindOrCreateArray(index, writeAccess: false);
            if (array == null)
                return null;
            return array[index & NodeMask];
        }