diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-09 12:42:56 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-09 12:42:56 +0000 |
commit | 4f72b81de88948e149af93dd96406e4f519e15c6 (patch) | |
tree | e4bdf36a13c6fbd2bee70eceada82aef7bf9b945 /src/cli/runtime/IFn.cs | |
parent | 3e18fcb60b00f869f74b112af5b5d90b9a9edba0 (diff) |
added ISeq, ISequential, modified Cons
Diffstat (limited to 'src/cli/runtime/IFn.cs')
-rw-r--r-- | src/cli/runtime/IFn.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/runtime/IFn.cs b/src/cli/runtime/IFn.cs index e96fd902..f2e86341 100644 --- a/src/cli/runtime/IFn.cs +++ b/src/cli/runtime/IFn.cs @@ -30,8 +30,8 @@ Object invoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object /*throws Exception*/; Object invoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, - Cons args) /*throws Exception*/; + ISeq args) /*throws Exception*/; -Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/; +Object applyTo(ThreadLocalData tld, ISeq arglist) /*throws Exception*/; } } |