Read or write a nibble
Source position: syshelph.inc line 729
public property TIntegerHelper.Nibbles[aIndex: TIntegerNibbleIndex] : nibble |
Nibbles property reads or writes nibble value to a nibble number determined by argument aIndex.
MyInteger.Clear; // %00000000000000000000000000000000 MyInteger equals 0 MyInteger.Nibbles[1] := 3; // %00000000000000000000000000110000 MyInteger equals 48 WriteLn(MyInteger.Nibbles[1]); // 3
|
Read or write a bit |
|
|
Read or write a byte |
|
TIntegerHelper.Words |
|
Read or write a word |