gobuffalo / plush

The powerful template system that Go needs
MIT License
901 stars 56 forks source link

Add index assignment #129

Closed Mido-sys closed 3 years ago

Mido-sys commented 3 years ago

Add index assignment to both Arrays and Maps. For arrays, the size will not grow, and the evaluator will throw an out-of-bounds error. I thought about expanding the array if the user sends an index out of bounds, but I don't think it should be allowed. The memory cost will be high.

paganotoni commented 3 years ago

Thanks @Mido-sys !