# Functions
Allocates an object of type T.
Allocates a new slice with the desired length and capacity.
Allocates a new string whose size and contents will be the same as found in bytes.
Allocates a new string whose size and contents will be the same as found in str.
Returns a new RefSlice pointing to a slice whose size and contents is the same as append(into.Value(), value).
Returns a new RefSlice pointing to a slice whose size and contents is the same as append(into.Value(), fromSlice...).
Returns a new RefString pointing to a string whose size and contents is the same as into.Value() + value.
Allocates a new slice which contains the elements of slices concatenated together.
Allocates a new string which contains the elements of strs concatenated together.
Returns the allocation config for the allocation size of a []T with capacity.
Returns the allocation config for the allocations size of a string of length.
Returns the allocation config for the allocation size of type T
It is important to note that this config apply to the size class indicated by T.
Frees the allocation referenced by r.
Frees the allocation referenced by r.
Frees the allocation referenced by r.
Returns a new *Store.
Returns a new *Store.
Returns the stats for the allocation size of a []T with capacity.
Returns the stats for the allocations size of a string of length.
Returns the stats for the allocation size of type T.
# Interfaces
This type constraint allows us to build generic types which accept any Reference type.