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/ISequential.cs | |
parent | 3e18fcb60b00f869f74b112af5b5d90b9a9edba0 (diff) |
added ISeq, ISequential, modified Cons
Diffstat (limited to 'src/cli/runtime/ISequential.cs')
-rw-r--r-- | src/cli/runtime/ISequential.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/cli/runtime/ISequential.cs b/src/cli/runtime/ISequential.cs new file mode 100644 index 00000000..66d5023e --- /dev/null +++ b/src/cli/runtime/ISequential.cs @@ -0,0 +1,22 @@ +/**
+ * Copyright (c) Rich Hickey. All rights reserved.
+ * The use and distribution terms for this software are covered by the
+ * Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
+ * which can be found in the file CPL.TXT at the root of this distribution.
+ * By using this software in any fashion, you are agreeing to be bound by
+ * the terms of this license.
+ * You must not remove this notice, or any other, from this software.
+ */
+using System;
+
+
+namespace org.clojure.runtime
+ {
+
+ public interface ISequential
+ {
+
+ ISeq seq();
+
+ }
+ }
|