Gen7Data/Scripts/Interfaces/narray.astypedef
Deukhoofd afe091eefa
All checks were successful
continuous-integration/drone/push Build is passing
Finish the A moves
2021-10-30 18:45:42 +02:00

6 lines
139 B
Plaintext

type narray<T> {
uint64 Length { get const; };
const T@ At(uint64 index) const;
const T@ get_opIndex(uint64) const property;
}