Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Core 2.6 - Last minute requests - take your chance!

From: holger:rebol at: 5-Apr-2002 10:30

On Fri, Apr 05, 2002 at 08:54:53AM -0500, [Robbo1Mark--aol--com] wrote:
> Here's my wish list for REBOL/Core 2.6 and contains > lot's of useful additional series! functions which are > swap, top, pop, push, rest, drop, chop, nip, tuck, cut, > slice and chomp.
Not all that useful, IMHO. Some of it just involves aliasing, most of the other stuff is for handling stacks and similar data structure. The main problem here is that making the beginning of the series the top of the stack is a Bad Idea, because it makes push/pop O(n) (except for list!). There is also the problem that a lot of useful, short words would be reserved for something that provides little added functionality. We usually like to reserve such words for more "fundamental" features. -- Holger Kruse [kruse--nordicglobal--com]