more math func's like:
round
ceil
floor
bound: func [x min max] [
  if (x > max) return max
  if (x < min) return min
  return x
]
near: func [x  y  dy] [
  if all [(x < (y + dy)) (x > (y - dy))] return true
  return false
]
and something like printf function for pretty output formating
printf "####.##" 20.1
should give: 0020.10

 Piotr Gapiński; mailto:[EMAIL PROTECTED]
 Olsztyńska Strona Rowerowa; http://www.rowery.olsztyn.pl

----- Original Message -----
From: "Petr Krenzelok" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 05, 2002 8:28 AM
Subject: [REBOL] Core 2.6 - Last minute requests - take your chance!


> Hello list,
>
> I had a nice chat with Carl on IOS Messenger, and we agreed upon
> following scenario:
>
> Core 2.6 is really near now, so we all have last chance to post bug
> reports, enhancement request, to be included in 2.6. Post it as a reply
> to this message. Those of us, being present on IOS Developer server,
> will look into it, and fill it into IOS bug database. But please, keep
> in mind following simple but clear rules, set-up by Carl.
>
> 1) ALL older DB requests should be submitted if you want them to be
> considered for 2.6.
>
> 2) Those requests that are "just a few lines" of change will be done.
>
> 3) Those requests where a user has already coded it, and we agree with
> the code, name, and API details, then we will add it.
>
> 4) And then, if there is a very serious problem
>
> 5) If it is a big change, and no code has been created, then it will not
> be in 2.6.
>
>
> So please - no multimedia stuff, no components, no modules, no
> threading, no dreamy stuff - let's save it for 3.0 :-)
>
> Thanks,
> -pekr-
>
> --
> To unsubscribe from this list, please send an email to
> [EMAIL PROTECTED] with "unsubscribe" in the
> subject, without the quotes.
>
>
>
>

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to