sax :: AttributesImpl :: ensure_capacity
Parameters:
n
# Ensure the internal array's capacity. # # Parameters: # # * `n`: minimum number of attributes that the array must be able to hold. private fun ensure_capacity(n: Int) do data.enlarge(n * 5) end