Array.Builder
The functions in this module allows you to build an Array more efficiently.
Unless you have a performance problem, it's recommended to stick with the functions
in the Array module.
type Builder a
A Builder represents an Array under construction. The functionality
of this type is intentionally limited. You can only create it, add elements to
it and convert it to an Array. Any other operation is out of scope. In return,
you get a faster way of building Arrays.