Gen7Data/Scripts/Interfaces/narray.astypedef

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;
}