March 2000
Intermediate to advanced
576 pages
18h 13m
English
Lo Function
function Lo(Value: Integer): Byte;
The Lo function returns the least significant byte
of an integer. The Lo function is not a real
function, but is expanded inline by the
compiler.
The Lo function is equivalent to the following
function:
function Lo(Value: Integer): Byte; begin Result := Value and $FF; end;
| Hi Function |
Read now
Unlock full access