CreationShakeFor
class CreationShakeFor(val init: CreationShakeStatement, val condition: CreationShakeValue, val update: CreationShakeStatement, val body: CreationShakeCode) : CreationShakeStatement, ShakeFor(source)
Constructors
Link copied to clipboard
constructor(init: CreationShakeStatement, condition: CreationShakeValue, update: CreationShakeStatement, body: CreationShakeCode)
Properties
Link copied to clipboard
The body of the for loop. This is the block of code that gets executed repeatedly as long as the condition is true.
Link copied to clipboard
The condition for the for loop. The loop continues as long as this condition evaluates to true.
Link copied to clipboard
The initialization statement for the for loop. This is executed before the loop starts.
Link copied to clipboard
The update statement for the for loop. This is executed after each iteration of the loop.