zscript-doc/api/base/FixedArray.md

17 lines
233 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;
}
```
- `Size`
Returns the size of the array. This is a compile-time constant.
<!-- EOF -->