14using System.Runtime.InteropServices;
15using System.Collections;
16using System.Collections.Generic;
18public partial class Int64Vector : global::System.IDisposable, global::System.Collections.IEnumerable, global::System.Collections.Generic.IList<long>
23 internal Int64Vector(global::System.IntPtr cPtr,
bool cMemoryOwn) {
25 swigCPtr =
new global::System.Runtime.InteropServices.HandleRef(
this, cPtr);
28 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(
Int64Vector obj) {
29 return (obj ==
null) ?
new global::System.Runtime.InteropServices.HandleRef(
null, global::System.IntPtr.Zero) : obj.swigCPtr;
32 internal static global::System.Runtime.InteropServices.HandleRef swigRelease(
Int64Vector obj) {
35 throw new global::System.ApplicationException(
"Cannot release ownership as memory is not owned");
36 global::System.Runtime.InteropServices.HandleRef ptr = obj.swigCPtr;
37 obj.swigCMemOwn =
false;
41 return new global::System.Runtime.InteropServices.HandleRef(
null, global::System.IntPtr.Zero);
51 global::System.GC.SuppressFinalize(
this);
54 protected virtual void Dispose(
bool disposing) {
56 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
61 swigCPtr =
new global::System.Runtime.InteropServices.HandleRef(
null, global::System.IntPtr.Zero);
66 public Int64Vector(global::System.Collections.IEnumerable c) : this() {
68 throw new global::System.ArgumentNullException(
"c");
69 foreach (
long element
in c) {
74 public Int64Vector(global::System.Collections.Generic.IEnumerable<
long> c) : this() {
76 throw new global::System.ArgumentNullException(
"c");
77 foreach (
long element
in c) {
94 public long this[
int index] {
96 return getitem(index);
99 setitem(index, value);
105 return (
int)capacity();
108 if (value < 0 || (uint)value < size())
109 throw new global::System.ArgumentOutOfRangeException(
"Capacity");
110 reserve((uint)value);
132 public void CopyTo(
long[] array)
137 public void CopyTo(
long[] array,
int arrayIndex)
142 public void CopyTo(
int index,
long[] array,
int arrayIndex,
int count)
145 throw new global::System.ArgumentNullException(
"array");
147 throw new global::System.ArgumentOutOfRangeException(
"index",
"Value is less than zero");
149 throw new global::System.ArgumentOutOfRangeException(
"arrayIndex",
"Value is less than zero");
151 throw new global::System.ArgumentOutOfRangeException(
"count",
"Value is less than zero");
153 throw new global::System.ArgumentException(
"Multi dimensional array.",
"array");
154 if (index+count > this.
Count || arrayIndex+count > array.Length)
155 throw new global::System.ArgumentException(
"Number of elements to copy is too large.");
156 for (
int i=0; i<count; i++)
157 array.SetValue(getitemcopy(index+i), arrayIndex+i);
161 long[] array =
new long[this.
Count];
166 global::System.Collections.Generic.IEnumerator<
long> global::System.Collections.Generic.IEnumerable<
long>.GetEnumerator() {
167 return new Int64VectorEnumerator(
this);
170 global::System.Collections.IEnumerator global::System.Collections.IEnumerable.GetEnumerator() {
171 return new Int64VectorEnumerator(
this);
174 public Int64VectorEnumerator GetEnumerator() {
175 return new Int64VectorEnumerator(
this);
183 public sealed class Int64VectorEnumerator : global::System.Collections.IEnumerator
184 , global::System.Collections.Generic.IEnumerator<long>
187 private int currentIndex;
188 private object currentObject;
189 private int currentSize;
192 collectionRef = collection;
194 currentObject =
null;
195 currentSize = collectionRef.Count;
201 if (currentIndex == -1)
202 throw new global::System.InvalidOperationException(
"Enumeration not started.");
203 if (currentIndex > currentSize - 1)
204 throw new global::System.InvalidOperationException(
"Enumeration finished.");
205 if (currentObject ==
null)
206 throw new global::System.InvalidOperationException(
"Collection modified.");
207 return (
long)currentObject;
212 object global::System.Collections.IEnumerator.Current {
219 int size = collectionRef.Count;
220 bool moveOkay = (currentIndex+1 < size) && (size == currentSize);
223 currentObject = collectionRef[currentIndex];
225 currentObject =
null;
230 public void Reset() {
232 currentObject =
null;
233 if (collectionRef.Count != currentSize) {
234 throw new global::System.InvalidOperationException(
"Collection modified.");
240 currentObject =
null;
251 public void Clear() {
255 public void Add(
long x) {
259 private uint size() {
264 private bool empty() {
265 bool ret = operations_research_constraint_solverPINVOKE.Int64Vector_empty(swigCPtr);
269 private uint capacity() {
270 uint ret = operations_research_constraint_solverPINVOKE.Int64Vector_capacity(swigCPtr);
274 private void reserve(uint n) {
275 operations_research_constraint_solverPINVOKE.Int64Vector_reserve(swigCPtr, n);
278 public Int64Vector(
int capacity) : this(operations_research_constraint_solverPINVOKE.new_Int64Vector__SWIG_2(capacity), true) {
279 if (operations_research_constraint_solverPINVOKE.SWIGPendingException.Pending)
throw operations_research_constraint_solverPINVOKE.SWIGPendingException.Retrieve();
282 private long getitemcopy(
int index) {
288 private long getitem(
int index) {
289 long ret = operations_research_constraint_solverPINVOKE.Int64Vector_getitem(swigCPtr, index);
290 if (operations_research_constraint_solverPINVOKE.SWIGPendingException.Pending)
throw operations_research_constraint_solverPINVOKE.SWIGPendingException.Retrieve();
294 private void setitem(
int index,
long val) {
295 operations_research_constraint_solverPINVOKE.Int64Vector_setitem(swigCPtr, index, val);
296 if (operations_research_constraint_solverPINVOKE.SWIGPendingException.Pending)
throw operations_research_constraint_solverPINVOKE.SWIGPendingException.Retrieve();
300 operations_research_constraint_solverPINVOKE.Int64Vector_AddRange(swigCPtr,
Int64Vector.getCPtr(values));
311 public void Insert(
int index,
long x) {
342 public void Reverse(
int index,
int count) {
357 public int IndexOf(
long value) {
367 public bool Remove(
long value) {