CircularList.toArray

Copy and return the contained set of values in an array, using the optional dst as a recipient (which is resized as necessary).

Returns a slice of dst representing the container values.

Time complexity: O(n)

class CircularList(V, alias Reap = Container.reap, alias Heap = Container.DefaultCollect)
final
V[]
toArray
(
V[] dst = null
)

Meta