Gen7Data/Scripts/Interfaces/narray.astypedef

6 lines
127 B
Plaintext
Raw Normal View History

2021-10-23 12:20:18 +00:00
type narray<T> {
uint64 Length { get const; };
2021-11-20 14:31:52 +00:00
T@ At(uint64 index) const;
T@ get_opIndex(uint64) const property;
2021-10-23 12:20:18 +00:00
}