zscript-doc/api/base/FixedArray.md

17 lines
232 B
Markdown
Raw Normal View History

2018-12-29 16:05:19 -08:00
# Type[N]
Fixed-size arrays have a size method attached to them for convenience purposes.
```
struct Type[N]
{
uint Size() const;
}
```
2019-08-14 03:31:41 -07:00
### `Size`
2018-12-29 16:05:19 -08:00
2019-08-14 03:31:41 -07:00
Returns the size of the array. This is a compile-time constant.
2018-12-29 16:05:19 -08:00
<!-- EOF -->