(int index, object o)
| 123 | } |
| 124 | |
| 125 | public object Replace(int index, object o) |
| 126 | { |
| 127 | if (index >= 0 && index < count) |
| 128 | { |
| 129 | object obj = list[index].obj; |
| 130 | list[index].obj = o; |
| 131 | return obj; |
| 132 | } |
| 133 | |
| 134 | return null; |
| 135 | } |
| 136 | |
| 137 | public int Check(int check_pos, int max_check, Func<object, bool> checker, Dictionary<object, int> reverse_map) |
| 138 | { |
no outgoing calls