mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
All associative array properties now work as they should. Fixed problems with some cases of array.length and array.ptr. Fixed some problems with array properties. Fixed 'in' contracts.
9 lines
230 B
C
9 lines
230 B
C
#ifndef LLVMDC_GEN_AA_H
|
|
#define LLVMDC_GEN_AA_H
|
|
|
|
DValue* DtoAAIndex(Type* type, DValue* aa, DValue* key);
|
|
DValue* DtoAAIn(Type* type, DValue* aa, DValue* key);
|
|
void DtoAARemove(DValue* aa, DValue* key);
|
|
|
|
#endif // LLVMDC_GEN_AA_H
|