CyrusBuilt.MonoPi.BitSet.WordIndex C# (CSharp) 메소드

WordIndex() 개인적인 정적인 메소드

Given the specified bit index, returns the word index containing it.
private static WordIndex ( Int32 bitIndex ) : Int32
bitIndex System.Int32 /// The bit index. ///
리턴 System.Int32
		private static Int32 WordIndex(Int32 bitIndex) {
			return (bitIndex >> ADDRESS_BITS_PER_WORD);
		}