diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-19 16:34:13 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-19 16:34:13 +0000 |
commit | 0d697a5d3edb1551353f6fad0a4c98b8d803b106 (patch) | |
tree | ad844711c496e9d07f20a5a9926be68ce2558267 /src/cli/runtime/PersistentArrayMap.cs | |
parent | 89fc0caa43811c7dfcb47a29aa59e78d295e6a1c (diff) |
added Tuple, indexing
Diffstat (limited to 'src/cli/runtime/PersistentArrayMap.cs')
-rw-r--r-- | src/cli/runtime/PersistentArrayMap.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/PersistentArrayMap.cs b/src/cli/runtime/PersistentArrayMap.cs index 7d789af5..02e35275 100644 --- a/src/cli/runtime/PersistentArrayMap.cs +++ b/src/cli/runtime/PersistentArrayMap.cs @@ -39,7 +39,7 @@ protected PersistentArrayMap(){ * This ctor captures/aliases the passed array, so do not modify later
* @param init {key1,val1,key2,val2,...}
*/
-public PersistentArrayMap(Object[] init){
+public PersistentArrayMap(params Object[] init){
this.array = init;
}
|