Hallo!
Just a question: I need 2 externals and I don't know if they already exist (I know they are really easy to make, but I don't want to double things):
1) something like pwd, witch gives me the directory of the current patch
2) something, which gives me the maximum value of a dynamic length list
e.g. [1 3 5 4 ( | [max_length] |
this should give 2 as result (because 5 is the biggest element)
Thanks, LG Georg
Hallo, Georg Holzmann hat gesagt: // Georg Holzmann wrote:
- something like pwd, witch gives me the directory of the current patch
Guenther once wrote something like this, I thought it was in CVS already? Don't remember the name currently.
- something, which gives me the maximum value of a dynamic length list
e.g. [1 3 5 4 ( | [max_length] |
this should give 2 as result (because 5 is the biggest element)
You meant "5" right? That you can do with [maximum] from Cyclone. There also is [minimum].
Ciao
Quoting Frank Barknecht fbar@footils.org:
e.g. [1 3 5 4 ( | [max_length] |
this should give 2 as result (because 5 is the biggest element)
You meant "5" right? That you can do with [maximum] from Cyclone. There also is [minimum].
and of course there is zexy's [minmax] which gives you both the minimum and the maximum of the list values at the same time...