_[i] (Projection)
a[i] is the element of a at static index i. Indexes start from 0.
Syntax
expr[expr1]
Signatures
Type
Given an input array of type T^n, and as index i, a size such that 0<=i<n, returns a value of type T
Causality
The output depends instantaneously on its input.
Initialization
The resulting sequence has its first value defined if its input has its first value defined.
Clock
Input and output have the same clock.