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

this() public method

Gets the total number of items that can be stored in this tree without having to increase the size of the tree.
public this ( uint index ) : object
index uint
return object
        public object this[uint index]
        {
            get
            {
                if ((index & NodeInverseMask) == this.recentStart)
                    return this.recent[index & NodeMask];
                return GetValueNonCached(index);
            }
            set
            {
                value = value ?? Undefined.Value;
                if ((index & NodeInverseMask) == this.recentStart)
                    this.recent[index & NodeMask] = value;
                else
                {
                    object[] array = FindOrCreateArray(index, writeAccess: true);
                    array[index & NodeMask] = value;
                }
            }
        }