Gen7Data/Scripts/Interfaces/narray.astypedef

6 lines
126 B
Plaintext
Raw Normal View History

2021-10-23 12:20:18 +00:00
type narray<T> {
uint64 Length { get const; };
const T@ At(uint64 index) const;
const T@ opIndex(uint64) const;
}