mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-10 04:45:56 +03:00
8 lines
264 B
C
8 lines
264 B
C
#ifndef LDC_GEN_AA_H
|
|
#define LDC_GEN_AA_H
|
|
|
|
DValue* DtoAAIndex(Loc& loc, Type* type, DValue* aa, DValue* key, bool lvalue);
|
|
DValue* DtoAAIn(Loc& loc, Type* type, DValue* aa, DValue* key);
|
|
void DtoAARemove(Loc& loc, DValue* aa, DValue* key);
|
|
|
|
#endif // LDC_GEN_AA_H
|