mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
10 lines
329 B
C
10 lines
329 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);
|
|
DValue* DtoAARemove(Loc& loc, DValue* aa, DValue* key);
|
|
LLValue* DtoAAEquals(Loc& loc, TOK op, DValue* l, DValue* r);
|
|
|
|
#endif // LDC_GEN_AA_H
|