Finish the A moves
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-10-30 18:45:42 +02:00
parent cb2f53a239
commit afe091eefa
14 changed files with 213 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
type narray<T> {
uint64 Length { get const; };
const T@ At(uint64 index) const;
const T@ opIndex(uint64) const;
const T@ get_opIndex(uint64) const property;
}