Gen7Data/Scripts/Interfaces/narray.astypedef

6 lines
139 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;
2021-10-30 16:45:42 +00:00
const T@ get_opIndex(uint64) const property;
2021-10-23 12:20:18 +00:00
}