rc-list - mailing list for the rc(1) shell
 help / color / mirror / Atom feed
From: Brynjulv Hauksson <Brynjulv.Hauksson@nr.no>
To: rc@hawkwind.utcs.toronto.edu
Subject: Re: list operators
Date: Wed, 15 Sep 1993 16:47:08 -0400	[thread overview]
Message-ID: <"boeygen.nr.173:15.08.93.20.47.12"@nr.no> (raw)

When I started using rc I thought it lacked some list operators,
and eventually placed these definitions in my `.rcrc':

	# vshift var [num]	-- shift $var num (default 1) places
fn vshift {v = $1 n = $2 {* = $$v && shift $n && $v = $*}}
	# vrev var		-- reverse the list in $var
fn vrev {v = $1 d = () {* = $$v && for(i in $*){d = ($i $d)} && $v = $d}}
	# vchop var [num]	-- remove last num (default 1) elems of $var
fn vchop {v = $1 {vrev $v && vshift $v $2 && vrev $v}}

There are probably faster, more elegant and/or more robust ways of 
doing it. I haven't worried much about it, since it turned out 
that I almost never use these functions anyway :-)

- brynjulv


             reply	other threads:[~1993-09-15 20:47 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1993-09-15 20:47 Brynjulv Hauksson [this message]
  -- strict thread matches above, loose matches on Subject: below --
1993-09-17 17:32 Stefan Dalibor
1993-09-16 10:11 malte
1993-09-15 21:04 Tom Culliton x2278
1993-09-15 19:38 Tom Culliton x2278
1993-09-15 20:08 ` Charles Hannum
1993-09-15 19:01 rsalz
1993-09-15 18:29 Byron Rakitzis
1993-09-15 18:28 malte
1993-09-15 18:07 rsalz
1993-09-15 17:55 malte

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='"boeygen.nr.173:15.08.93.20.47.12"@nr.no' \
    --to=brynjulv.hauksson@nr.no \
    --cc=rc@hawkwind.utcs.toronto.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).