Created
September 11, 2020 17:59
-
-
Save Akira13641/bfd115b4888411f0ee5f0f94cbbaa7ac to your computer and use it in GitHub Desktop.
A simple example of the kind of stuff you can do with constant generic parameters in the trunk version of Free Pascal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program FreePascalConstGenerics; | |
// Using the Delphi-compatible syntax mode lets us leave out the | |
// `generic` and `specialize` keywords when defining our generic types. | |
{$mode Delphi}{$H+}{$J-} | |
type ICalc<const L: PtrInt; const R: PtrInt> = record | |
const | |
Add = L + R; | |
Sub = L - R; | |
Mul = L * R; | |
FDiv = L / R; | |
IDiv = L div R; | |
_Mod = L mod R; | |
_And = L and R; | |
_Or = L or R; | |
_Shl = L shl R; | |
_Shr = L shr R; | |
end; | |
type UCalc<const L: PtrUInt; const R: PtrUInt> = record | |
const | |
Add = L + R; | |
Sub = L - R; | |
Mul = L * R; | |
FDiv = L / R; | |
IDiv = L div R; | |
_Mod = L mod R; | |
_And = L and R; | |
_Or = L or R; | |
_Shl = L shl R; | |
_Shr = L shr R; | |
end; | |
type FCalc<const L: Double; const R: Double> = record | |
const | |
Add = L + R; | |
Sub = L - R; | |
Mul = L * R; | |
FDiv = L / R; | |
end; | |
type Calculation = FCalc<ICalc<1, 2>.Add, UCalc<3, 4>.Mul>; | |
begin | |
WriteLn(Calculation.Add); | |
WriteLn(Calculation.Sub); | |
WriteLn(Calculation.Mul); | |
WriteLn(Calculation.FDiv : 0 : 2); | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment