Pass system works

This commit is contained in:
Nathan Braswell
2018-06-14 00:08:55 -04:00
parent 405ee70db8
commit e898e7b285
3 changed files with 155 additions and 1 deletions

View File

@@ -43,6 +43,9 @@ obj map<T,U> (Object, Serializable) {
pos = values.unserialize(it, pos)
return pos
}
fun size(): int {
return keys.size
}
// the old unnecessary template to prevent generation
// if not used trick (in this case, changing out U with V)
fun operator==<V>(other: ref map<T,V>): bool {