FirstBlockInst Syntax FirstBlockInst(); Description Determines if the current block is the first of its kind in a frame. Returns 1 True. 0 False. Example FirstBlockInst(); Where there are two block types, b1 and b2, in the input: b10, b11, b12, b20, b13, b14 Result: True (1) for b10, b20 and b13 b13 returns True (1) because it is separated from b10 by b20.
FirstBlockInst();
1
0
b10, b11, b12, b20, b13, b14