Unit 'sysutils' Package
[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] [#rtl]

TInt64Helper.Nibbles

Read or write a nibble.

Declaration

Source position: syshelph.inc line 1383

public property TInt64Helper.Nibbles[aIndex: TInt64NibbleIndex] : nibble
  read GetNibble
  write PutNibble;

Description

Nibbles property reads or writes nibble value to a nibble number determined by argument aIndex.

MyInt64.Clear;   // %0000000000000000000000000000000000000000000000000000000000000000 MyInt64 equals 0
MyInt64.Nibbles[1] := 3; // %0000000000000000000000000000000000000000000000000000000000110000 MyInt64 equals 48
WriteLn(MyInt64.Nibbles[1]); // 3

See also

TInt64Helper.Bits

  

Read or write a bit.

TInt64Helper.Bytes

  

Read or write a byte.

TInt64Helper.Words

  

Read or write a word.

TInt64Helper.DWords

  

Read or write a dword.


Documentation generated on: Jul 24 2023