Skip to content
Snippets Groups Projects
Commit 2b007abd authored by Martin Nilsson's avatar Martin Nilsson
Browse files

Added some autodoc references.

Rev: lib/modules/Array.pmod:1.79
parent 04dd6e96
No related branches found
No related tags found
No related merge requests found
...@@ -138,7 +138,8 @@ array sum_arrays(function(mixed ...:mixed) sum, array ... args) ...@@ -138,7 +138,8 @@ array sum_arrays(function(mixed ...:mixed) sum, array ... args)
//! If @[cmp] is omitted, @[`>()] is used instead. //! If @[cmp] is omitted, @[`>()] is used instead.
//! //!
//! @seealso //! @seealso
//! @[map()], @[sort()], @[`>()], @[dwim_sort_func], @[lyskom_sort_func] //! @[map()], @[sort()], @[`>()], @[dwim_sort_func], @[lyskom_sort_func],
//! @[oid_sort_func]
//! //!
array sort_array(array foo, function|void cmp, mixed ... args) array sort_array(array foo, function|void cmp, mixed ... args)
{ {
...@@ -605,6 +606,8 @@ array arrayify(void|array|mixed x) ...@@ -605,6 +606,8 @@ array arrayify(void|array|mixed x)
//! Sort with care of numerical sort for OID values: //! Sort with care of numerical sort for OID values:
//! "1.2.1" before "1.11.1" //! "1.2.1" before "1.11.1"
//! @seealso
//! @[sort_array]
int oid_sort_func(string a0,string b0) int oid_sort_func(string a0,string b0)
{ {
string a2="",b2=""; string a2="",b2="";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment