(ref: TxRef.TxRef<HashSet.HashSet<V>>)
| 147 | } |
| 148 | |
| 149 | const makeTxHashSet = <V>(ref: TxRef.TxRef<HashSet.HashSet<V>>): TxHashSet<V> => { |
| 150 | const self = Object.create(TxHashSetProto) |
| 151 | self.ref = ref |
| 152 | return self |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Creates an empty TxHashSet. |
no outgoing calls
no test coverage detected