StaticArray.put

Add elements es to the back. Throws when array becomes full. NOTE: doesn't invalidate any borrow

struct StaticArray(T, uint capacity_, bool borrowChecked = false)
alias put = insertBack

Meta