Adds more abilities

This commit is contained in:
2021-11-20 15:31:52 +01:00
parent 57e5e03dc3
commit 7d6017dfeb
8 changed files with 87 additions and 12 deletions

View File

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