CyrusBuilt.MonoPi.BitSet.TrimToSize C# (CSharp) Method

TrimToSize() private method

Attempts to reduce internal storage used for the bits in this bit set. Calling this method may, but is not required to, affect the value returned by a subsequent call to the CyrusBuilt.MonoPi.BitSet.Size property.
private TrimToSize ( ) : void
return void
		private void TrimToSize() {
			if (this._wordsInUse != this._bits.Length) {
				long[] copy = { };
				Array.Copy(this._bits, copy, this._wordsInUse);
				this._bits = copy;
				this.CheckInvariants();
			}
		}