DynArray.insert_sorted

Insert an element preserving the array sorted.

This assumes the array was previously sorted. The "cmp" template argument can be used to specify a custom comparison expression as "a" string (where a is the element in the array and "b" is the element passed as a parameter "x"). Using a template to specify the comparison method is a hack to cope with compilers that have trouble inlining a delegate (i.e. DMD).

This can trigger an allocation if the array is not big enough and moves memory around, so you have to be specially careful if you are taking pointers into the array's data.

Returns a pointer to the newly inserted element if the append was successful, null otherwise (i.e. an allocation was triggered but the allocation failed) in which case the internal state is not changed.

struct DynArray(T)
T*
insert_sorted
(
char[] cmp = "a < b"
)
(
in T x
)

Meta