diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-10-15 15:56:08 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-10-15 15:56:08 +0000 |
commit | 348f4fa02df4c2b111be5cc7afd48123fd40d195 (patch) | |
tree | 5ec845ba0f9108172e9dfabbf127011f0f9d051a /src/cli | |
parent | b8e4aa5295ac361ebc01c40274b336b875e93489 (diff) |
interim checkin
Diffstat (limited to 'src/cli')
-rw-r--r-- | src/cli/runtime/RT.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cli/runtime/RT.cs b/src/cli/runtime/RT.cs index 40626d62..75659413 100644 --- a/src/cli/runtime/RT.cs +++ b/src/cli/runtime/RT.cs @@ -170,7 +170,11 @@ static public ISeq rest(Object x) return null;
return seq(x).rest();
}
-
+
+static public ISeq rrest(Object x) {
+ return rest(rest(x));
+}
+
static public Object peek(Object x)
{
if (x == null)
|