-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Nguyễn Tuấn Dũng edited this page May 18, 2018
·
8 revisions
Welcome to the ctimmy wiki!
For most of syntax, see Timmy Pascal
In Timmy | In ctimmy | Description |
---|---|---|
TTimmy = Object |
class timmy |
|
PStr = ^String; |
❌ | Use std::string * directly |
PStrArray = Array of PStr; |
std::vector<std::string *> pStrArray |
|
Function CompareStrArrays(ArrayA, ArrayB: TStrArray): Boolean; |
❌ | Use operator== to compare instead |
Constructor TTimmy.Init() |
timmy::timmy() |
|
nOfEntries : Integer |
size_t nOfEntries |
Compatible with .size()
|
Function Remove (AIndex: Integer): Integer; |
int remove(size_t); |