1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-05 08:58:22 +02:00

Link libphutil functions from docs

This commit is contained in:
vrana 2012-08-15 13:47:03 -07:00
parent 84c32dd928
commit 8c7b17142e

View file

@ -18,7 +18,7 @@ If you merge a list of arrays like this:
intermediate arrays and copies every element it has previously seen each time intermediate arrays and copies every element it has previously seen each time
you iterate. you iterate.
In a libphutil environment, you can use ##array_mergev($list_of_lists)## In a libphutil environment, you can use @{function@libphutil:array_mergev}
instead. instead.
= var_export() Hates Baby Animals = = var_export() Hates Baby Animals =
@ -140,8 +140,8 @@ keys that are naturally sortable with a function that uses native comparison
(e.g., sort(), asort(), ksort(), or natcasesort()). Sort this array instead, and (e.g., sort(), asort(), ksort(), or natcasesort()). Sort this array instead, and
use it to reorder the original array. use it to reorder the original array.
In a libphutil environment, you can often do this easily with isort() or In a libphutil environment, you can often do this easily with
msort(). @{function@libphutil:isort} or @{function@libphutil:msort}.
= array_intersect() and array_diff() are Also Slow = = array_intersect() and array_diff() are Also Slow =
@ -249,8 +249,8 @@ arguments and you want to do this:
new $class_name($argv[0], $argv[1], ...); new $class_name($argv[0], $argv[1], ...);
...you'll probably invent a very interesting, very novel solution that is very ...you'll probably invent a very interesting, very novel solution that is very
wrong. In a libphutil environment, solve this problem with newv(). Elsewhere, wrong. In a libphutil environment, solve this problem with
copy newv()'s implementation. @{function@libphutil:newv}. Elsewhere, copy newv()'s implementation.
= Equality is not Transitive = = Equality is not Transitive =
@ -276,7 +276,7 @@ This doesn't do what you'd expect it to do in C:
This is because the successor to 'z' is 'aa', which is "less than" 'z'. The This is because the successor to 'z' is 'aa', which is "less than" 'z'. The
loop will run for ~700 iterations until it reaches 'zz' and terminates. That is, loop will run for ~700 iterations until it reaches 'zz' and terminates. That is,
##$c<## will take on these values: ##$c## will take on these values:
a a
b b