zscript-doc/api/base/FixedArray.md

17 lines
230 B
Markdown
Raw Permalink 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]
{
2019-08-14 03:32:51 -07:00
uint Size() const;
2018-12-29 16:05:19 -08:00
}
```
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 -->