diff options
Diffstat (limited to 'src/cli/runtime/IPersistentCollection.cs')
-rw-r--r-- | src/cli/runtime/IPersistentCollection.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cli/runtime/IPersistentCollection.cs b/src/cli/runtime/IPersistentCollection.cs index d908b7fb..6746240b 100644 --- a/src/cli/runtime/IPersistentCollection.cs +++ b/src/cli/runtime/IPersistentCollection.cs @@ -16,6 +16,8 @@ namespace clojure.lang public interface IPersistentCollection
{
+ int count();
+
ISeq seq();
}
|